IfbNumeric constructor

IfbNumeric(
  1. int length,
  2. String description, {
  3. bool leftPadded = true,
})

Implementation

IfbNumeric(super.length, super.description, {bool leftPadded = true})
  : super(padder: LeftPadder.zeroPadder, interpreter: leftPadded ? BcdInterpreter.leftPaddedInstance : BcdInterpreter.rightPaddedInstance);