NumTextInputType constructor

const NumTextInputType({
  1. required String name,
  2. bool? signed,
  3. bool? decimal,
  4. String? params,
})

Implementation

const NumTextInputType(
    {required this.name, bool? signed, bool? decimal, this.params})
    : super.numberWithOptions(signed: signed, decimal: decimal);