DropDownItem<T> constructor

const DropDownItem<T>({
  1. required T value,
  2. required String displayName,
})

Implementation

const DropDownItem({
  required this.value,
  required this.displayName,
});