NumberParserBase<R> constructor

NumberParserBase<R>(
  1. NumberFormat format,
  2. String text
)

Create a new _NumberParser on which we can call parse().

Implementation

NumberParserBase(this.format, this.text) : input = StringStack(text) {
  scale = format.multiplier;
  value = parse();
}