MousePopupButton<T> constructor

const MousePopupButton<T>({
  1. Widget? child,
  2. PopupMenuItemBuilder<T>? itemBuilder,
  3. PopupMenuCanceled? onCanceled,
  4. PopupMenuItemSelected<T>? onSelected,
  5. T? initialValue,
  6. double? elevation,
  7. String? semanticLabel,
  8. ShapeBorder? shape,
  9. Color? color,
  10. bool useRootNavigator = false,
  11. BoxConstraints? constraints,
  12. Key? key,
})

Implementation

const MousePopupButton(
    {this.child,
    this.itemBuilder,
    this.onCanceled,
    this.onSelected,
    this.initialValue,
    this.elevation,
    this.semanticLabel,
    this.shape,
    this.color,
    this.useRootNavigator = false,
    this.constraints,
    Key? key})
    : super(key: key);