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