bind method
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 onFocusChange()?,
- bool? enableFeedback,
- 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,
);