bind method
LiveCheckedPopupMenuItem
bind({
- MetaCell<
void> ? tap, - MutableCell<
T?> ? value, - bool? checked,
- bool? enabled,
- EdgeInsets? padding,
- double? height,
- WidgetStateProperty<
TextStyle?> ? labelTextStyle, - MouseCursor? mouseCursor,
- 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,
);