bind method
CellRadioListTile
bind({
- ValueCell<
bool> ? enabled, - ValueCell<
T> ? value, - MutableCell<
T?> ? groupValue, - ValueCell<
MouseCursor?> ? mouseCursor, - ValueCell<
bool> ? toggleable, - ValueCell<
Color?> ? activeColor, - ValueCell<
WidgetStateProperty< ? fillColor,Color?> ?> - ValueCell<
Color?> ? hoverColor, - ValueCell<
WidgetStateProperty< ? overlayColor,Color?> ?> - ValueCell<
double?> ? splashRadius, - ValueCell<
MaterialTapTargetSize?> ? materialTapTargetSize, - ValueCell<
Widget?> ? title, - ValueCell<
Widget?> ? subtitle, - ValueCell<
bool> ? isThreeLine, - ValueCell<
bool?> ? dense, - ValueCell<
Widget?> ? secondary, - ValueCell<
bool> ? selected, - ValueCell<
ListTileControlAffinity> ? controlAffinity, - ValueCell<
bool> ? autofocus, - ValueCell<
EdgeInsetsGeometry?> ? contentPadding, - ValueCell<
ShapeBorder?> ? shape, - ValueCell<
Color?> ? tileColor, - ValueCell<
Color?> ? selectedTileColor, - ValueCell<
VisualDensity?> ? visualDensity, - ValueCell<
FocusNode?> ? focusNode, - ValueCell<
void Function(bool)?> ? onFocusChange, - ValueCell<
bool?> ? enableFeedback,
Implementation
CellRadioListTile bind({
ValueCell<bool>? enabled,
ValueCell<T>? value,
MutableCell<T?>? groupValue,
ValueCell<MouseCursor?>? mouseCursor,
ValueCell<bool>? toggleable,
ValueCell<Color?>? activeColor,
ValueCell<WidgetStateProperty<Color?>?>? fillColor,
ValueCell<Color?>? hoverColor,
ValueCell<WidgetStateProperty<Color?>?>? overlayColor,
ValueCell<double?>? splashRadius,
ValueCell<MaterialTapTargetSize?>? materialTapTargetSize,
ValueCell<Widget?>? title,
ValueCell<Widget?>? subtitle,
ValueCell<bool>? isThreeLine,
ValueCell<bool?>? dense,
ValueCell<Widget?>? secondary,
ValueCell<bool>? selected,
ValueCell<ListTileControlAffinity>? controlAffinity,
ValueCell<bool>? autofocus,
ValueCell<EdgeInsetsGeometry?>? contentPadding,
ValueCell<ShapeBorder?>? shape,
ValueCell<Color?>? tileColor,
ValueCell<Color?>? selectedTileColor,
ValueCell<VisualDensity?>? visualDensity,
ValueCell<FocusNode?>? focusNode,
ValueCell<void Function(bool)?>? onFocusChange,
ValueCell<bool?>? enableFeedback,
}) =>
CellRadioListTile(
enabled: enabled ?? this.enabled,
value: value ?? this.value,
groupValue: groupValue ?? this.groupValue,
mouseCursor: mouseCursor ?? this.mouseCursor,
toggleable: toggleable ?? this.toggleable,
activeColor: activeColor ?? this.activeColor,
fillColor: fillColor ?? this.fillColor,
hoverColor: hoverColor ?? this.hoverColor,
overlayColor: overlayColor ?? this.overlayColor,
splashRadius: splashRadius ?? this.splashRadius,
materialTapTargetSize:
materialTapTargetSize ?? this.materialTapTargetSize,
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,
autofocus: autofocus ?? this.autofocus,
contentPadding: contentPadding ?? this.contentPadding,
shape: shape ?? this.shape,
tileColor: tileColor ?? this.tileColor,
selectedTileColor: selectedTileColor ?? this.selectedTileColor,
visualDensity: visualDensity ?? this.visualDensity,
focusNode: focusNode ?? this.focusNode,
onFocusChange: onFocusChange ?? this.onFocusChange,
enableFeedback: enableFeedback ?? this.enableFeedback,
);