CupertinoSelectionTile<T> constructor

const CupertinoSelectionTile<T>({
  1. required Widget title,
  2. required bool isSelected,
  3. required WidgetSelectionLocation checkMarkLocation,
  4. Widget? subtitle,
  5. T? value,
  6. void onTap(
    1. T? value
    )?,
  7. Color? checkMarkColor,
  8. required bool enabled,
  9. Key? key,
})

Implementation

const CupertinoSelectionTile({
  required this.title,
  required this.isSelected,
  required this.checkMarkLocation,
  this.subtitle,
  this.value,
  this.onTap,
  this.checkMarkColor,
  required this.enabled,
  Key? key}) : super(key: key);