RadioListTile constructor

const RadioListTile({
  1. Key? key,
  2. required bool checked,
  3. ValueChanged<bool>? onChanged,
  4. Widget? title,
  5. Widget? subtitle,
  6. bool isThreeLine = false,
  7. RadioButtonThemeData? style,
  8. bool autofocus = false,
  9. FocusNode? focusNode,
  10. ButtonState<Color>? tileColor,
  11. ButtonState<ShapeBorder>? shape,
})

Implementation

const RadioListTile({
  Key? key,
  required this.checked,
  this.onChanged,
  this.title,
  this.subtitle,
  this.isThreeLine = false,
  this.style,
  this.autofocus = false,
  this.focusNode,
  this.tileColor,
  this.shape,
}) : super(key: key);