PlatformRadioListTile<T> constructor

const PlatformRadioListTile<T>({
  1. Key? key,
  2. Key? widgetKey,
  3. required T? groupValue,
  4. required T value,
  5. required void onChanged(
    1. T? value
    )?,
  6. bool toggable = false,
  7. Widget? title,
  8. Widget? subtitle,
  9. Color? activeColor,
  10. EdgeInsetsGeometry? contentPadding,
})

Implementation

const PlatformRadioListTile({
  Key? key,
  this.widgetKey,
  required this.groupValue,
  required this.value,
  required this.onChanged,
  this.toggable = false,
  this.title,
  this.subtitle,
  this.activeColor,
  this.contentPadding,
}) : super(key: key);