TSelectItem<V> constructor
TSelectItem<V> ({
- required String text,
- required V value,
- String? key,
- List<
TSelectItem< ? children,V> >
Implementation
TSelectItem({
required this.text,
required this.value,
String? key,
this.children,
}) : key = key ?? '${text}_$value';