NikuPopupMenuButton<T> constructor

NikuPopupMenuButton<T>(
  1. Widget? child, {
  2. Key? key,
  3. T? initialValue,
  4. PopupMenuItemSelected<T>? onSelected,
  5. PopupMenuCanceled? onCanceled,
  6. String? tooltip,
  7. double? elevation,
  8. NikuEdgeInsets? padding,
  9. Widget? icon,
  10. Offset? offset,
  11. bool? enabled,
  12. ShapeBorder? shape,
  13. Color? color,
  14. bool? enableFeedback,
  15. double? iconSize,
  16. List<T>? items,
  17. PopupMenuItemBuilder<T>? itemBuilder,
})

Implementation

NikuPopupMenuButton(
  this.child, {
  Key? key,
  this.initialValue,
  this.onSelected,
  this.onCanceled,
  this.tooltip,
  this.elevation,
  this.padding,
  this.icon,
  this.offset,
  this.enabled,
  this.shape,
  this.color,
  this.enableFeedback,
  this.iconSize,
  this.items,
  this.itemBuilder,
}) : super(key: key);