tryParseValue method Null safety

Value? tryParseValue(
  1. String s
)

Try to parse s consistent with the current display mode, giving a Value on success.

Implementation

Value? tryParseValue(String s) => displayMode.tryParse(s, this);