ModernFormTextFieldListenner constructor

ModernFormTextFieldListenner({
  1. required String? label,
  2. required dynamic value,
  3. ModernFormTextFieldListennerType? type,
  4. void onChange(
    1. dynamic
    )?,
  5. void onFieldSubmitted()?,
  6. bool? enabled,
  7. String? leftSymbol,
  8. String? rightSymbol,
  9. String? decimalSeparator,
  10. int? precision,
  11. String? validator(
    1. dynamic
    )?,
  12. Icon? prefixIcon,
  13. Widget? suffix,
  14. TextInputType? keyboardType,
  15. TextInputAction? textInputAction,
  16. TextCapitalization? textCapitalization,
  17. InputDecoration decoration(
    1. InputDecoration
    )?,
  18. EdgeInsetsGeometry? padding,
  19. String? helperText,
  20. TextStyle? helperStyle,
  21. String? mask,
  22. String? labelTextHelper,
})

Implementation

ModernFormTextFieldListenner({
  required this.label,
  required this.value,
  this.type,
  this.onChange,
  this.onFieldSubmitted,
  this.enabled,
  this.leftSymbol,
  this.rightSymbol,
  this.decimalSeparator,
  this.precision,
  this.validator,
  this.prefixIcon,
  this.suffix,
  this.keyboardType,
  this.textInputAction,
  this.textCapitalization,
  this.decoration,
  this.padding,
  this.helperText,
  this.helperStyle,
  this.mask,
  this.labelTextHelper,
});