widget method
Implementation
widget(context) => RadioListTile<T>(
value: value!,
groupValue: groupValue,
onChanged: onChanged ?? (_) {},
toggleable: toggleable ?? false,
activeColor: activeColor,
title: title,
subtitle: subtitle,
secondary: secondary,
isThreeLine: isThreeLine ?? false,
dense: dense,
selected: selected ?? false,
controlAffinity: controlAffinity ?? ListTileControlAffinity.platform,
autofocus: autofocus ?? false,
contentPadding: contentPadding?.value,
shape: shape,
tileColor: tileColor,
selectedTileColor: selectedTileColor,
visualDensity: visualDensity,
focusNode: focusNode,
enableFeedback: enableFeedback,
);