RegexUI constructor
const
RegexUI({
- Key? key,
- required TextEditingController controller,
- required List<
RegexModel> regexList, - required FocusNode focusNode,
- EdgeInsets? padding,
- EdgeInsets? margin,
- BoxDecoration? boxDecoration,
- IconData? iconTrue,
- IconData? iconFalse,
- Color? textColorTrue,
- Color? textColorFalse,
- Color? iconColorTrue,
- Color? iconColorFalse,
- TextStyle? textStyle,
- dynamic validate(
- 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);