BottomLineDigitOnlyTextField constructor

const BottomLineDigitOnlyTextField({
  1. required TextEditingController controller,
  2. required String hintText,
  3. TextInputType inputType = TextInputType.text,
  4. TextInputAction inputAction = TextInputAction.next,
  5. int maxLength = TextField.noMaxLength,
  6. void onChanged(
    1. String
    )?,
  7. Key? key,
})

Implementation

const BottomLineDigitOnlyTextField({
  required this.controller,
  required this.hintText,
  this.inputType = TextInputType.text,
  this.inputAction = TextInputAction.next,
  this.maxLength = TextField.noMaxLength,
  this.onChanged,
  super.key,
});