NumberParser constructor
NumberParser(
- NumberFormat format,
- String text
Create a new _NumberParser
on which we can call parse().
Implementation
NumberParser(this.format, this.text) : input = IntlStream(text) {
scale = format.multiplier;
value = parse();
}