TSelectStateNotifier<T, V> constructor

TSelectStateNotifier<T, V>({
  1. required bool isMultiple,
  2. ItemTextAccessor<T>? itemText,
  3. ItemValueAccessor<T, V>? itemValue,
  4. ItemKeyAccessor<T>? itemKey,
  5. ItemChildrenAccessor<T>? itemChildren,
  6. String? label,
})

Implementation

TSelectStateNotifier({
  required this.isMultiple,
  this.itemText,
  this.itemValue,
  this.itemKey,
  this.itemChildren,
  this.label,
});