bind method

LiveCheckboxListTile bind({
  1. MutableCell<bool?>? value,
  2. MouseCursor? mouseCursor,
  3. Color? activeColor,
  4. WidgetStateProperty<Color?>? fillColor,
  5. Color? checkColor,
  6. Color? hoverColor,
  7. WidgetStateProperty<Color?>? overlayColor,
  8. double? splashRadius,
  9. MaterialTapTargetSize? materialTapTargetSize,
  10. VisualDensity? visualDensity,
  11. FocusNode? focusNode,
  12. bool? autofocus,
  13. ShapeBorder? shape,
  14. BorderSide? side,
  15. bool? isError,
  16. ValueCell<bool?>? enabled,
  17. Color? tileColor,
  18. Widget? title,
  19. Widget? subtitle,
  20. bool? isThreeLine,
  21. bool? dense,
  22. Widget? secondary,
  23. bool? selected,
  24. ListTileControlAffinity? controlAffinity,
  25. EdgeInsetsGeometry? contentPadding,
  26. bool? tristate,
  27. OutlinedBorder? checkboxShape,
  28. Color? selectedTileColor,
  29. void onFocusChange(
    1. bool
    )?,
  30. bool? enableFeedback,
  31. String? checkboxSemanticLabel,
})

Implementation

LiveCheckboxListTile bind({
  MutableCell<bool?>? value,
  MouseCursor? mouseCursor,
  Color? activeColor,
  WidgetStateProperty<Color?>? fillColor,
  Color? checkColor,
  Color? hoverColor,
  WidgetStateProperty<Color?>? overlayColor,
  double? splashRadius,
  MaterialTapTargetSize? materialTapTargetSize,
  VisualDensity? visualDensity,
  FocusNode? focusNode,
  bool? autofocus,
  ShapeBorder? shape,
  BorderSide? side,
  bool? isError,
  ValueCell<bool?>? enabled,
  Color? tileColor,
  Widget? title,
  Widget? subtitle,
  bool? isThreeLine,
  bool? dense,
  Widget? secondary,
  bool? selected,
  ListTileControlAffinity? controlAffinity,
  EdgeInsetsGeometry? contentPadding,
  bool? tristate,
  OutlinedBorder? checkboxShape,
  Color? selectedTileColor,
  void Function(bool)? onFocusChange,
  bool? enableFeedback,
  String? checkboxSemanticLabel,
}) =>
    LiveCheckboxListTile(
      value: value ?? this.value,
      mouseCursor: mouseCursor ?? this.mouseCursor,
      activeColor: activeColor ?? this.activeColor,
      fillColor: fillColor ?? this.fillColor,
      checkColor: checkColor ?? this.checkColor,
      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,
      enabled: enabled ?? this.enabled,
      tileColor: tileColor ?? this.tileColor,
      title: title ?? this.title,
      subtitle: subtitle ?? this.subtitle,
      isThreeLine: isThreeLine ?? this.isThreeLine,
      dense: dense ?? this.dense,
      secondary: secondary ?? this.secondary,
      selected: selected ?? this.selected,
      controlAffinity: controlAffinity ?? this.controlAffinity,
      contentPadding: contentPadding ?? this.contentPadding,
      tristate: tristate ?? this.tristate,
      checkboxShape: checkboxShape ?? this.checkboxShape,
      selectedTileColor: selectedTileColor ?? this.selectedTileColor,
      onFocusChange: onFocusChange ?? this.onFocusChange,
      enableFeedback: enableFeedback ?? this.enableFeedback,
      checkboxSemanticLabel:
          checkboxSemanticLabel ?? this.checkboxSemanticLabel,
    );