TSelectItem<V>.simple constructor

TSelectItem<V>.simple(
  1. String text,
  2. V value, [
  3. String? key
])

Implementation

factory TSelectItem.simple(String text, V value, [String? key]) {
  return TSelectItem(text: text, value: value, key: key);
}