FSelectItem<T> constructor
const
FSelectItem<T> ({})
Creates a FSelectItem with a custom title
and value.
Implementation
const factory FSelectItem({
required Widget title,
required T value,
FItemStyle Function(FItemStyle)? style,
bool? enabled,
Widget? prefix,
Widget? subtitle,
// ignore: avoid_positional_boolean_parameters
Widget? Function(BuildContext, bool) suffixBuilder,
Key? key,
}) = _SelectItem<T>;