AurisSelectOption<T> constructor

const AurisSelectOption<T>({
  1. required T value,
  2. required String label,
})

Creates an option carrying value, shown as label.

Implementation

const AurisSelectOption({required this.value, required this.label});