bind method

LiveChoiceChip bind({
  1. ValueCell<bool>? enabled,
  2. Widget? avatar,
  3. Widget? label,
  4. TextStyle? labelStyle,
  5. EdgeInsetsGeometry? labelPadding,
  6. double? pressElevation,
  7. MutableCell<bool>? selected,
  8. Color? selectedColor,
  9. Color? disabledColor,
  10. String? tooltip,
  11. BorderSide? side,
  12. OutlinedBorder? shape,
  13. Clip? clipBehavior,
  14. bool? autofocus,
  15. WidgetStateProperty<Color?>? color,
  16. Color? backgroundColor,
  17. EdgeInsetsGeometry? padding,
  18. VisualDensity? visualDensity,
  19. MaterialTapTargetSize? materialTapTargetSize,
  20. double? elevation,
  21. Color? shadowColor,
  22. Color? surfaceTintColor,
  23. IconThemeData? iconTheme,
  24. Color? selectedShadowColor,
  25. bool? showCheckmark,
  26. Color? checkmarkColor,
  27. ShapeBorder? avatarBorder,
  28. BoxConstraints? avatarBoxConstraints,
  29. 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,
    );