bind method

CellListTile bind({
  1. ValueCell<Widget?>? leading,
  2. ValueCell<Widget?>? title,
  3. ValueCell<Widget?>? subtitle,
  4. ValueCell<Widget?>? trailing,
  5. ValueCell<bool>? isThreeLine,
  6. ValueCell<bool?>? dense,
  7. ValueCell<VisualDensity?>? visualDensity,
  8. ValueCell<ShapeBorder?>? shape,
  9. ValueCell<ListTileStyle?>? style,
  10. ValueCell<Color?>? selectedColor,
  11. ValueCell<Color?>? iconColor,
  12. ValueCell<Color?>? textColor,
  13. ValueCell<TextStyle?>? titleTextStyle,
  14. ValueCell<TextStyle?>? subtitleTextStyle,
  15. ValueCell<TextStyle?>? leadingAndTrailingTextStyle,
  16. ValueCell<EdgeInsetsGeometry?>? contentPadding,
  17. ValueCell<bool>? enabled,
  18. ValueCell<void Function()?>? onTap,
  19. ValueCell<void Function()?>? onLongPress,
  20. ValueCell<void Function(bool)?>? onFocusChange,
  21. ValueCell<MouseCursor?>? mouseCursor,
  22. ValueCell<bool>? selected,
  23. ValueCell<Color?>? focusColor,
  24. ValueCell<Color?>? hoverColor,
  25. ValueCell<Color?>? splashColor,
  26. ValueCell<FocusNode?>? focusNode,
  27. ValueCell<bool>? autofocus,
  28. ValueCell<Color?>? tileColor,
  29. ValueCell<Color?>? selectedTileColor,
  30. ValueCell<bool?>? enableFeedback,
  31. ValueCell<double?>? horizontalTitleGap,
  32. ValueCell<double?>? minVerticalPadding,
  33. ValueCell<double?>? minLeadingWidth,
  34. ValueCell<double?>? minTileHeight,
  35. ValueCell<ListTileTitleAlignment?>? titleAlignment,
})

Implementation

CellListTile bind({
  ValueCell<Widget?>? leading,
  ValueCell<Widget?>? title,
  ValueCell<Widget?>? subtitle,
  ValueCell<Widget?>? trailing,
  ValueCell<bool>? isThreeLine,
  ValueCell<bool?>? dense,
  ValueCell<VisualDensity?>? visualDensity,
  ValueCell<ShapeBorder?>? shape,
  ValueCell<ListTileStyle?>? style,
  ValueCell<Color?>? selectedColor,
  ValueCell<Color?>? iconColor,
  ValueCell<Color?>? textColor,
  ValueCell<TextStyle?>? titleTextStyle,
  ValueCell<TextStyle?>? subtitleTextStyle,
  ValueCell<TextStyle?>? leadingAndTrailingTextStyle,
  ValueCell<EdgeInsetsGeometry?>? contentPadding,
  ValueCell<bool>? enabled,
  ValueCell<void Function()?>? onTap,
  ValueCell<void Function()?>? onLongPress,
  ValueCell<void Function(bool)?>? onFocusChange,
  ValueCell<MouseCursor?>? mouseCursor,
  ValueCell<bool>? selected,
  ValueCell<Color?>? focusColor,
  ValueCell<Color?>? hoverColor,
  ValueCell<Color?>? splashColor,
  ValueCell<FocusNode?>? focusNode,
  ValueCell<bool>? autofocus,
  ValueCell<Color?>? tileColor,
  ValueCell<Color?>? selectedTileColor,
  ValueCell<bool?>? enableFeedback,
  ValueCell<double?>? horizontalTitleGap,
  ValueCell<double?>? minVerticalPadding,
  ValueCell<double?>? minLeadingWidth,
  ValueCell<double?>? minTileHeight,
  ValueCell<ListTileTitleAlignment?>? titleAlignment,
}) =>
    CellListTile(
      leading: leading ?? this.leading,
      title: title ?? this.title,
      subtitle: subtitle ?? this.subtitle,
      trailing: trailing ?? this.trailing,
      isThreeLine: isThreeLine ?? this.isThreeLine,
      dense: dense ?? this.dense,
      visualDensity: visualDensity ?? this.visualDensity,
      shape: shape ?? this.shape,
      style: style ?? this.style,
      selectedColor: selectedColor ?? this.selectedColor,
      iconColor: iconColor ?? this.iconColor,
      textColor: textColor ?? this.textColor,
      titleTextStyle: titleTextStyle ?? this.titleTextStyle,
      subtitleTextStyle: subtitleTextStyle ?? this.subtitleTextStyle,
      leadingAndTrailingTextStyle:
          leadingAndTrailingTextStyle ?? this.leadingAndTrailingTextStyle,
      contentPadding: contentPadding ?? this.contentPadding,
      enabled: enabled ?? this.enabled,
      onTap: onTap ?? this.onTap,
      onLongPress: onLongPress ?? this.onLongPress,
      onFocusChange: onFocusChange ?? this.onFocusChange,
      mouseCursor: mouseCursor ?? this.mouseCursor,
      selected: selected ?? this.selected,
      focusColor: focusColor ?? this.focusColor,
      hoverColor: hoverColor ?? this.hoverColor,
      splashColor: splashColor ?? this.splashColor,
      focusNode: focusNode ?? this.focusNode,
      autofocus: autofocus ?? this.autofocus,
      tileColor: tileColor ?? this.tileColor,
      selectedTileColor: selectedTileColor ?? this.selectedTileColor,
      enableFeedback: enableFeedback ?? this.enableFeedback,
      horizontalTitleGap: horizontalTitleGap ?? this.horizontalTitleGap,
      minVerticalPadding: minVerticalPadding ?? this.minVerticalPadding,
      minLeadingWidth: minLeadingWidth ?? this.minLeadingWidth,
      minTileHeight: minTileHeight ?? this.minTileHeight,
      titleAlignment: titleAlignment ?? this.titleAlignment,
    );