AFieldMasked constructor

const AFieldMasked({
  1. Key? key,
  2. void onChanged(
    1. String?
    )?,
  3. bool readOnly = false,
  4. bool required = false,
  5. Iterable<String>? autofillHints,
  6. IconData? icon,
  7. TextInputType? keyboardType,
  8. String? label,
  9. Widget? suffix,
  10. Widget? bottom,
  11. required String mask,
  12. Map<String, RegExp>? filter,
  13. bool denySpaces = false,
  14. required String? hintText,
  15. required String identifier,
  16. String? initialValue = "",
  17. int? flexible,
  18. bool expanded = false,
  19. void onUnfocus()?,
  20. EdgeInsets? margin,
  21. bool autofocus = false,
  22. bool capitalize = false,
  23. bool clearable = false,
  24. List<ARule<String>>? customRules,
  25. double height = 46,
  26. bool linkToAForm = true,
  27. VoidCallback? onSubmit,
  28. EdgeInsets? padding,
  29. bool readonly = false,
})

Implementation

const AFieldMasked({
  super.key,
  super.onChanged,
  super.readOnly,
  super.required,
  super.autofillHints,
  super.icon,
  super.keyboardType,
  super.label,
  super.suffix,
  super.bottom,
  required this.mask,
  this.filter,
  super.denySpaces,
  required super.hintText,
  required super.identifier,
  super.initialValue = "",
  super.flexible,
  super.expanded,
  super.onUnfocus,
  super.margin,
  super.autofocus,
  super.capitalize,
  super.clearable,
  super.customRules,
  super.height,
  super.linkToAForm,
  super.onSubmit,
  super.padding,
  super.readonly,
});