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