bind method

LiveRadioListTile bind({
  1. ValueCell<bool>? enabled,
  2. T? value,
  3. MutableCell<T?>? groupValue,
  4. MouseCursor? mouseCursor,
  5. bool? toggleable,
  6. Color? activeColor,
  7. WidgetStateProperty<Color?>? fillColor,
  8. Color? hoverColor,
  9. WidgetStateProperty<Color?>? overlayColor,
  10. double? splashRadius,
  11. MaterialTapTargetSize? materialTapTargetSize,
  12. Widget? title,
  13. Widget? subtitle,
  14. bool? isThreeLine,
  15. bool? dense,
  16. Widget? secondary,
  17. bool? selected,
  18. ListTileControlAffinity? controlAffinity,
  19. bool? autofocus,
  20. EdgeInsetsGeometry? contentPadding,
  21. ShapeBorder? shape,
  22. Color? tileColor,
  23. Color? selectedTileColor,
  24. VisualDensity? visualDensity,
  25. FocusNode? focusNode,
  26. void onFocusChange(
    1. bool
    )?,
  27. 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,
    );