parse method

  1. @override
num parse(
  1. String input
)
override

Parses input and returns the numeric value.

Throws FormatException when input cannot be parsed by this codec.

Implementation

@override
num parse(String input) {
  final normalized = _normalizeNumberInput(input);
  return num.parse(normalized);
}