TileRadio<T> constructor

const TileRadio<T>({
  1. required T value,
  2. required T? groupValue,
  3. required String title,
  4. required ValueChanged<T>? onChanged,
  5. String subtitle = "",
  6. Color? activeColor,
  7. Color? borderColor,
  8. bool enable = true,
  9. int maxLines = 1,
  10. Key? key,
})

Implementation

const TileRadio({
  required this.value,
  required this.groupValue,
  required this.title,
  required this.onChanged,
  this.subtitle = "",
  this.activeColor,
  this.borderColor,
  this.enable = true,
  this.maxLines = 1,
  super.key,
});