MousePopupButton<T> constructor

const MousePopupButton<T>({
  1. Widget? child,
  2. PopupMenuItemBuilder<T>? itemBuilder,
  3. PopupMenuCanceled? onCanceled,
  4. PopupMenuItemSelected<T>? onSelected,
  5. Key? key,
})

Implementation

const MousePopupButton({
  this.child,
  this.itemBuilder,
  this.onCanceled,
  this.onSelected,
  Key? key}) : super(key: key);