bind method
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,
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,
);