PopupSubMenuItem<T> constructor

const PopupSubMenuItem<T>({
  1. Key? key,
  2. String? title,
  3. List<T>? items,
  4. List<T>? selectedItems,
  5. TextStyle? style,
  6. dynamic onSelected(
    1. T
    )?,
  7. Offset? offset,
})

Implementation

const PopupSubMenuItem({
  super.key,
  this.title,
  this.items,
  this.selectedItems,
  this.style,
  this.onSelected,
  this.offset,
});