tryParseWith<R, P extends NumberParserBase<R> > method
R?
tryParseWith<R, P extends NumberParserBase<R> >()
Parse the number represented by the string using the parser created by the supplied parser generator. If it's not
parsable, returns null.
Implementation
@override
R? tryParseWith<R, P extends NumberParserBase<R>>(
P Function(NumberFormat p1, String p2) parserGenerator,
String text) =>
_scientific.tryParseWith(parserGenerator, _normalizeText(text));