NiceMaskedInput constructor

const NiceMaskedInput({
  1. Key? key,
  2. String? value,
  3. ValueChanged<String>? onChanged,
  4. required String mask,
  5. String maskChar = '_',
  6. String? label,
  7. String? hint,
  8. String? errorText,
  9. bool enabled = true,
})

Implementation

const NiceMaskedInput({
  super.key,
  this.value,
  this.onChanged,
  required this.mask,
  this.maskChar = '_',
  this.label,
  this.hint,
  this.errorText,
  this.enabled = true,
});