FDropdownEntry<T> constructor

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

Implementation

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