CubitFormMaskedTextField constructor

const CubitFormMaskedTextField({
  1. required FieldCubit<String> formFieldCubit,
  2. TextInputType? keyboardType,
  3. InputDecoration decoration = const InputDecoration(),
  4. required MaskTextInputFormatter maskFormatter,
  5. EdgeInsets? scrollPadding,
  6. TextStyle? style,
  7. TextAlign? textAlign,
  8. FocusNode? focusNode,
  9. Color? cursorColor,
  10. bool autofocus = false,
  11. String? prefixText,
  12. String? hintText,
  13. Key? key,
})

Implementation

const CubitFormMaskedTextField({
  required this.formFieldCubit,
  this.keyboardType,
  this.decoration = const InputDecoration(),
  required this.maskFormatter,
  this.scrollPadding,
  this.style,
  this.textAlign,
  this.focusNode,
  this.cursorColor,
  this.autofocus = false,
  this.prefixText,
  this.hintText,
  Key? key,
}) : super(key: key);