AntdFormRule constructor

const AntdFormRule({
  1. List<String>? enums,
  2. int? len,
  3. int? max,
  4. String? message,
  5. int? min,
  6. RegExp? pattern,
  7. bool? required,
  8. AntdFormRuleValidator? validator,
  9. AntdFormTrigger? trigger,
  10. bool warningOnly = false,
  11. bool? whitespace,
  12. AntdFormRuleType? type,
})

Implementation

const AntdFormRule(
    {this.enums,
    this.len,
    this.max,
    super.message,
    this.min,
    this.pattern,
    this.required,
    super.validator,
    super.trigger,
    super.warningOnly,
    this.whitespace,
    this.type});