parse method
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);
}