bind method

CellChip bind({
  1. ValueCell<Widget?>? avatar,
  2. ValueCell<Widget>? label,
  3. ValueCell<TextStyle?>? labelStyle,
  4. ValueCell<EdgeInsetsGeometry?>? labelPadding,
  5. ValueCell<Widget?>? deleteIcon,
  6. ValueCell<void Function()?>? onDeleted,
  7. ValueCell<Color?>? deleteIconColor,
  8. ValueCell<String?>? deleteButtonTooltipMessage,
  9. ValueCell<BorderSide?>? side,
  10. ValueCell<OutlinedBorder?>? shape,
  11. ValueCell<Clip>? clipBehavior,
  12. ValueCell<FocusNode?>? focusNode,
  13. ValueCell<bool>? autofocus,
  14. ValueCell<WidgetStateProperty<Color?>?>? color,
  15. ValueCell<Color?>? backgroundColor,
  16. ValueCell<EdgeInsetsGeometry?>? padding,
  17. ValueCell<VisualDensity?>? visualDensity,
  18. ValueCell<MaterialTapTargetSize?>? materialTapTargetSize,
  19. ValueCell<double?>? elevation,
  20. ValueCell<Color?>? shadowColor,
  21. ValueCell<Color?>? surfaceTintColor,
  22. ValueCell<IconThemeData?>? iconTheme,
  23. ValueCell<BoxConstraints?>? avatarBoxConstraints,
  24. ValueCell<BoxConstraints?>? deleteIconBoxConstraints,
  25. 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,
    );