MenuEntryItem<T> constructor

const MenuEntryItem<T>({
  1. Key? key,
  2. required FDropdownEntry<T> entry,
  3. FTextStyle? entryTextStyle,
  4. required void onTap(),
  5. FColorI? backgroundColor,
})

Implementation

const MenuEntryItem({
  Key? key,
  required this.entry,
  this.entryTextStyle,
  required this.onTap,
  this.backgroundColor,
}) : super(key: key);