bind method

LiveCheckbox bind({
  1. ValueCell<bool>? enabled,
  2. MutableCell<bool?>? value,
  3. bool? tristate,
  4. MouseCursor? mouseCursor,
  5. Color? activeColor,
  6. WidgetStateProperty<Color?>? fillColor,
  7. Color? checkColor,
  8. Color? focusColor,
  9. Color? hoverColor,
  10. WidgetStateProperty<Color?>? overlayColor,
  11. double? splashRadius,
  12. MaterialTapTargetSize? materialTapTargetSize,
  13. VisualDensity? visualDensity,
  14. FocusNode? focusNode,
  15. bool? autofocus,
  16. OutlinedBorder? shape,
  17. BorderSide? side,
  18. bool? isError,
  19. String? semanticLabel,
})

Implementation

LiveCheckbox bind({
  ValueCell<bool>? enabled,
  MutableCell<bool?>? value,
  bool? tristate,
  MouseCursor? mouseCursor,
  Color? activeColor,
  WidgetStateProperty<Color?>? fillColor,
  Color? checkColor,
  Color? focusColor,
  Color? hoverColor,
  WidgetStateProperty<Color?>? overlayColor,
  double? splashRadius,
  MaterialTapTargetSize? materialTapTargetSize,
  VisualDensity? visualDensity,
  FocusNode? focusNode,
  bool? autofocus,
  OutlinedBorder? shape,
  BorderSide? side,
  bool? isError,
  String? semanticLabel,
}) =>
    LiveCheckbox(
      enabled: enabled ?? this.enabled,
      value: value ?? this.value,
      tristate: tristate ?? this.tristate,
      mouseCursor: mouseCursor ?? this.mouseCursor,
      activeColor: activeColor ?? this.activeColor,
      fillColor: fillColor ?? this.fillColor,
      checkColor: checkColor ?? this.checkColor,
      focusColor: focusColor ?? this.focusColor,
      hoverColor: hoverColor ?? this.hoverColor,
      overlayColor: overlayColor ?? this.overlayColor,
      splashRadius: splashRadius ?? this.splashRadius,
      materialTapTargetSize:
          materialTapTargetSize ?? this.materialTapTargetSize,
      visualDensity: visualDensity ?? this.visualDensity,
      focusNode: focusNode ?? this.focusNode,
      autofocus: autofocus ?? this.autofocus,
      shape: shape ?? this.shape,
      side: side ?? this.side,
      isError: isError ?? this.isError,
      semanticLabel: semanticLabel ?? this.semanticLabel,
    );