bind method

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