PickerListTileStyle.radio constructor
PickerListTileStyle.radio({})
Radio button style — shows a radio icon as the leading widget.
Implementation
factory PickerListTileStyle.radio({
Color? activeColor,
TextStyle? textStyle,
TextStyle? selectedTextStyle,
EdgeInsetsGeometry? contentPadding,
Color? tileColor,
Color? selectedTileColor,
}) {
return PickerListTileStyle(
indicator: PickerListTileIndicator.radio,
activeColor: activeColor,
textStyle: textStyle,
selectedTextStyle: selectedTextStyle,
contentPadding: contentPadding,
tileColor: tileColor,
selectedTileColor: selectedTileColor,
);
}