RadioListTile<T> constructor

RadioListTile<T>({
  1. required T value,
  2. required T? groupValue,
  3. required Object title,
  4. Object? subtitle,
  5. ValueCmdCallback<T>? onChanged,
  6. ListTileControlAffinity controlAffinity = ListTileControlAffinity.leading,
  7. Widget? secondary,
  8. bool enabled = true,
  9. bool selected = false,
  10. bool dense = false,
  11. EdgeInsets? contentPadding,
  12. Key? key,
})

Implementation

RadioListTile({
  required this.value,
  required this.groupValue,
  required this.title,
  this.subtitle,
  this.onChanged,
  this.controlAffinity = ListTileControlAffinity.leading,
  this.secondary,
  this.enabled = true,
  this.selected = false,
  this.dense = false,
  this.contentPadding,
  super.key,
});