SelectItem<T> constructor

SelectItem<T>({
  1. String? select,
  2. dynamic tap(
    1. T value
    )?,
  3. Widget? child,
})

Implementation

SelectItem({
  this.select,
  this.tap,
  this.child,
});