SelectOption<T, P> constructor

const SelectOption<T, P>({
  1. required String text,
  2. required T value,
  3. P? params,
})

Implementation

const SelectOption({required this.text, required this.value, this.params});