bind method

LiveCheckedPopupMenuItem bind({
  1. MetaCell<void>? tap,
  2. MutableCell<T?>? value,
  3. bool? checked,
  4. bool? enabled,
  5. EdgeInsets? padding,
  6. double? height,
  7. WidgetStateProperty<TextStyle?>? labelTextStyle,
  8. MouseCursor? mouseCursor,
  9. Widget? child,
})

Implementation

LiveCheckedPopupMenuItem bind({
  MetaCell<void>? tap,
  MutableCell<T?>? value,
  bool? checked,
  bool? enabled,
  EdgeInsets? padding,
  double? height,
  WidgetStateProperty<TextStyle?>? labelTextStyle,
  MouseCursor? mouseCursor,
  Widget? child,
}) =>
    LiveCheckedPopupMenuItem(
      tap: tap ?? this.tap,
      value: value ?? this.value,
      checked: checked ?? this.checked,
      enabled: enabled ?? this.enabled,
      padding: padding ?? this.padding,
      height: height ?? this.height,
      labelTextStyle: labelTextStyle ?? this.labelTextStyle,
      mouseCursor: mouseCursor ?? this.mouseCursor,
      child: child ?? this.child,
    );