parse method

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

Parse the number represented by the string. If it's not parseable, throws a FormatException.

Implementation

@override
num parse(String text) => _scientific.parse(_normalizeText(text));