RegexUI constructor

const RegexUI({
  1. Key? key,
  2. required TextEditingController controller,
  3. required List<RegexModel> regexList,
  4. required FocusNode focusNode,
  5. EdgeInsets? padding,
  6. EdgeInsets? margin,
  7. BoxDecoration? boxDecoration,
  8. IconData? iconTrue,
  9. IconData? iconFalse,
  10. Color? textColorTrue,
  11. Color? textColorFalse,
  12. Color? iconColorTrue,
  13. Color? iconColorFalse,
  14. TextStyle? textStyle,
  15. dynamic validate(
    1. bool isValid
    )?,
})

Implementation

const RegexUI(
    {Key? key,
    required this.controller,
    required this.regexList,
    required this.focusNode,
    this.padding,
    this.margin,
    this.boxDecoration,
    this.iconTrue,
    this.iconFalse,
    this.textColorTrue,
    this.textColorFalse,
    this.iconColorTrue,
    this.iconColorFalse,
    this.textStyle,
    this.validate})
    : super(key: key);