bind method
CellChoiceChip
bind({
- ValueCell<
bool> ? enabled, - ValueCell<
Widget?> ? avatar, - ValueCell<
Widget> ? label, - ValueCell<
TextStyle?> ? labelStyle, - ValueCell<
EdgeInsetsGeometry?> ? labelPadding, - ValueCell<
double?> ? pressElevation, - MutableCell<
bool> ? selected, - ValueCell<
Color?> ? selectedColor, - ValueCell<
Color?> ? disabledColor, - ValueCell<
String?> ? tooltip, - ValueCell<
BorderSide?> ? side, - ValueCell<
OutlinedBorder?> ? shape, - ValueCell<
Clip> ? clipBehavior, - ValueCell<
bool> ? autofocus, - ValueCell<
WidgetStateProperty< ? color,Color?> ?> - ValueCell<
Color?> ? backgroundColor, - ValueCell<
EdgeInsetsGeometry?> ? padding, - ValueCell<
VisualDensity?> ? visualDensity, - ValueCell<
MaterialTapTargetSize?> ? materialTapTargetSize, - ValueCell<
double?> ? elevation, - ValueCell<
Color?> ? shadowColor, - ValueCell<
Color?> ? surfaceTintColor, - ValueCell<
IconThemeData?> ? iconTheme, - ValueCell<
Color?> ? selectedShadowColor, - ValueCell<
bool?> ? showCheckmark, - ValueCell<
Color?> ? checkmarkColor, - ValueCell<
ShapeBorder> ? avatarBorder, - ValueCell<
BoxConstraints?> ? avatarBoxConstraints, - ValueCell<
ChipAnimationStyle?> ? chipAnimationStyle,
Implementation
CellChoiceChip bind({
ValueCell<bool>? enabled,
ValueCell<Widget?>? avatar,
ValueCell<Widget>? label,
ValueCell<TextStyle?>? labelStyle,
ValueCell<EdgeInsetsGeometry?>? labelPadding,
ValueCell<double?>? pressElevation,
MutableCell<bool>? selected,
ValueCell<Color?>? selectedColor,
ValueCell<Color?>? disabledColor,
ValueCell<String?>? tooltip,
ValueCell<BorderSide?>? side,
ValueCell<OutlinedBorder?>? shape,
ValueCell<Clip>? clipBehavior,
ValueCell<bool>? autofocus,
ValueCell<WidgetStateProperty<Color?>?>? color,
ValueCell<Color?>? backgroundColor,
ValueCell<EdgeInsetsGeometry?>? padding,
ValueCell<VisualDensity?>? visualDensity,
ValueCell<MaterialTapTargetSize?>? materialTapTargetSize,
ValueCell<double?>? elevation,
ValueCell<Color?>? shadowColor,
ValueCell<Color?>? surfaceTintColor,
ValueCell<IconThemeData?>? iconTheme,
ValueCell<Color?>? selectedShadowColor,
ValueCell<bool?>? showCheckmark,
ValueCell<Color?>? checkmarkColor,
ValueCell<ShapeBorder>? avatarBorder,
ValueCell<BoxConstraints?>? avatarBoxConstraints,
ValueCell<ChipAnimationStyle?>? chipAnimationStyle,
}) =>
CellChoiceChip(
enabled: enabled ?? this.enabled,
avatar: avatar ?? this.avatar,
label: label ?? this.label,
labelStyle: labelStyle ?? this.labelStyle,
labelPadding: labelPadding ?? this.labelPadding,
pressElevation: pressElevation ?? this.pressElevation,
selected: selected ?? this.selected,
selectedColor: selectedColor ?? this.selectedColor,
disabledColor: disabledColor ?? this.disabledColor,
tooltip: tooltip ?? this.tooltip,
side: side ?? this.side,
shape: shape ?? this.shape,
clipBehavior: clipBehavior ?? this.clipBehavior,
autofocus: autofocus ?? this.autofocus,
color: color ?? this.color,
backgroundColor: backgroundColor ?? this.backgroundColor,
padding: padding ?? this.padding,
visualDensity: visualDensity ?? this.visualDensity,
materialTapTargetSize:
materialTapTargetSize ?? this.materialTapTargetSize,
elevation: elevation ?? this.elevation,
shadowColor: shadowColor ?? this.shadowColor,
surfaceTintColor: surfaceTintColor ?? this.surfaceTintColor,
iconTheme: iconTheme ?? this.iconTheme,
selectedShadowColor: selectedShadowColor ?? this.selectedShadowColor,
showCheckmark: showCheckmark ?? this.showCheckmark,
checkmarkColor: checkmarkColor ?? this.checkmarkColor,
avatarBorder: avatarBorder ?? this.avatarBorder,
avatarBoxConstraints: avatarBoxConstraints ?? this.avatarBoxConstraints,
chipAnimationStyle: chipAnimationStyle ?? this.chipAnimationStyle,
);