TGroupTile<T> constructor

const TGroupTile<T>({
  1. Key? key,
  2. String? title,
  3. required List<TTile<T>> tiles,
  4. Color? backgroundColor,
  5. Color? borderColor,
  6. bool enable = true,
  7. bool enableBorder = true,
  8. bool enableRadio = false,
  9. T? initialValue,
  10. ValueChanged<T?>? onChanged,
})

Implementation

const TGroupTile({
  super.key,
  this.title,
  required this.tiles,
  this.backgroundColor,
  this.borderColor,
  this.enable = true,
  this.enableBorder = true,
  this.enableRadio = false,
  this.initialValue,
  this.onChanged,
});