CheckboxFieldTheme constructor

const CheckboxFieldTheme({
  1. TextStyle? textStyle,
  2. MaterialStateProperty<Color?>? textColor,
  3. InputDecorationTheme? decorationTheme,
  4. CheckboxThemeData? checkboxTheme,
  5. FieldBlocBuilderControlAffinity? controlAffinity,
  6. bool canTapItemTile = false,
})

Implementation

const CheckboxFieldTheme({
  TextStyle? textStyle,
  MaterialStateProperty<Color?>? textColor,
  InputDecorationTheme? decorationTheme,
  this.checkboxTheme,
  this.controlAffinity,
  this.canTapItemTile = false,
}) : super(
        textStyle: textStyle,
        textColor: textColor,
        decorationTheme: decorationTheme,
      );