PickerListTileStyle.checkmark constructor
PickerListTileStyle.checkmark({})
Checkmark style — shows a check icon as the trailing widget when selected.
Implementation
factory PickerListTileStyle.checkmark({
Color? activeColor,
TextStyle? textStyle,
TextStyle? selectedTextStyle,
EdgeInsetsGeometry? contentPadding,
Color? tileColor,
Color? selectedTileColor,
}) {
return PickerListTileStyle(
indicator: PickerListTileIndicator.checkmark,
activeColor: activeColor,
textStyle: textStyle,
selectedTextStyle: selectedTextStyle,
contentPadding: contentPadding,
tileColor: tileColor,
selectedTileColor: selectedTileColor,
);
}