DecimalTextInputFormatter constructor

DecimalTextInputFormatter({
  1. required int decimalRange,
})

Implementation

DecimalTextInputFormatter({required this.decimalRange})
    : assert(decimalRange == null || decimalRange > 0);