parse method

num parse (String text)

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

Implementation

num parse(String text) => new _NumberParser(this, text).value;