RegexModel constructor

RegexModel({
  1. required String title,
  2. required RegExp regExp,
  3. IconData? iconTrue,
  4. IconData? iconFalse,
  5. Color? colorTrue,
  6. Color? colorFalse,
  7. Color? textColorTrue,
  8. Color? textColorFalse,
  9. TextStyle? textStyle,
})

Implementation

RegexModel(
    {required this.title,
    required this.regExp,
    this.iconTrue,
    this.iconFalse,
    this.colorTrue,
    this.colorFalse,
    this.textColorTrue,
    this.textColorFalse,
    this.textStyle});