bind method
CellChip
bind({
- ValueCell<
Widget?> ? avatar, - ValueCell<
Widget> ? label, - ValueCell<
TextStyle?> ? labelStyle, - ValueCell<
EdgeInsetsGeometry?> ? labelPadding, - ValueCell<
Widget?> ? deleteIcon, - ValueCell<
void Function()?> ? onDeleted, - ValueCell<
Color?> ? deleteIconColor, - ValueCell<
String?> ? deleteButtonTooltipMessage, - ValueCell<
BorderSide?> ? side, - ValueCell<
OutlinedBorder?> ? shape, - ValueCell<
Clip> ? clipBehavior, - ValueCell<
FocusNode?> ? focusNode, - 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<
BoxConstraints?> ? avatarBoxConstraints, - ValueCell<
BoxConstraints?> ? deleteIconBoxConstraints, - ValueCell<
ChipAnimationStyle?> ? chipAnimationStyle,
Implementation
CellChip bind({
ValueCell<Widget?>? avatar,
ValueCell<Widget>? label,
ValueCell<TextStyle?>? labelStyle,
ValueCell<EdgeInsetsGeometry?>? labelPadding,
ValueCell<Widget?>? deleteIcon,
ValueCell<void Function()?>? onDeleted,
ValueCell<Color?>? deleteIconColor,
ValueCell<String?>? deleteButtonTooltipMessage,
ValueCell<BorderSide?>? side,
ValueCell<OutlinedBorder?>? shape,
ValueCell<Clip>? clipBehavior,
ValueCell<FocusNode?>? focusNode,
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<BoxConstraints?>? avatarBoxConstraints,
ValueCell<BoxConstraints?>? deleteIconBoxConstraints,
ValueCell<ChipAnimationStyle?>? chipAnimationStyle,
}) =>
CellChip(
avatar: avatar ?? this.avatar,
label: label ?? this.label,
labelStyle: labelStyle ?? this.labelStyle,
labelPadding: labelPadding ?? this.labelPadding,
deleteIcon: deleteIcon ?? this.deleteIcon,
onDeleted: onDeleted ?? this.onDeleted,
deleteIconColor: deleteIconColor ?? this.deleteIconColor,
deleteButtonTooltipMessage:
deleteButtonTooltipMessage ?? this.deleteButtonTooltipMessage,
side: side ?? this.side,
shape: shape ?? this.shape,
clipBehavior: clipBehavior ?? this.clipBehavior,
focusNode: focusNode ?? this.focusNode,
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,
avatarBoxConstraints: avatarBoxConstraints ?? this.avatarBoxConstraints,
deleteIconBoxConstraints:
deleteIconBoxConstraints ?? this.deleteIconBoxConstraints,
chipAnimationStyle: chipAnimationStyle ?? this.chipAnimationStyle,
);