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