RadioFieldTheme constructor

const RadioFieldTheme({
  1. TextStyle? textStyle,
  2. MaterialStateProperty<Color?>? textColor,
  3. InputDecorationTheme? decorationTheme,
  4. RadioThemeData? radioTheme,
  5. bool canTapItemTile = false,
  6. bool canDeselect = true,
})

Implementation

const RadioFieldTheme({
  TextStyle? textStyle,
  MaterialStateProperty<Color?>? textColor,
  InputDecorationTheme? decorationTheme,
  this.radioTheme,
  this.canTapItemTile = false,
  this.canDeselect = true,
}) : super(
        textStyle: textStyle,
        textColor: textColor,
        decorationTheme: decorationTheme,
      );