NomoDropDownItemString<T> constructor

const NomoDropDownItemString<T>({
  1. required T value,
  2. required String title,
})

Implementation

const NomoDropDownItemString({
  required super.value,
  required this.title,
});