build method

  1. @override
Widget build(
  1. BuildContext context
)
override

Build the widget underneath this widget in the tree

Implementation

@override
Widget build(BuildContext context) => CheckedPopupMenuItem<T>(
      value: value?.call(),
      checked: checked,
      enabled: enabled,
      padding: padding,
      height: height,
      labelTextStyle: labelTextStyle,
      mouseCursor: mouseCursor,
      child: child,
      onTap: tap?.trigger,
    );