bind method
CellCupertinoListSection
bind({
- ValueCell<
List< ? children,Widget> ?> - ValueCell<
Widget?> ? header, - ValueCell<
EdgeInsetsGeometry> ? margin, - ValueCell<
Color> ? backgroundColor, - ValueCell<
BoxDecoration?> ? decoration, - ValueCell<
Clip> ? clipBehavior, - ValueCell<
double> ? dividerMargin, - ValueCell<
double?> ? additionalDividerMargin, - ValueCell<
double?> ? topMargin, - ValueCell<
bool> ? hasLeading, - ValueCell<
Color?> ? separatorColor,
Implementation
CellCupertinoListSection bind({
ValueCell<List<Widget>?>? children,
ValueCell<Widget?>? header,
ValueCell<Widget?>? footer,
ValueCell<EdgeInsetsGeometry>? margin,
ValueCell<Color>? backgroundColor,
ValueCell<BoxDecoration?>? decoration,
ValueCell<Clip>? clipBehavior,
ValueCell<double>? dividerMargin,
ValueCell<double?>? additionalDividerMargin,
ValueCell<double?>? topMargin,
ValueCell<bool>? hasLeading,
ValueCell<Color?>? separatorColor,
}) =>
CellCupertinoListSection(
children: children ?? this.children,
header: header ?? this.header,
footer: footer ?? this.footer,
margin: margin ?? this.margin,
backgroundColor: backgroundColor ?? this.backgroundColor,
decoration: decoration ?? this.decoration,
clipBehavior: clipBehavior ?? this.clipBehavior,
dividerMargin: dividerMargin ?? this.dividerMargin,
additionalDividerMargin:
additionalDividerMargin ?? this.additionalDividerMargin,
topMargin: topMargin ?? this.topMargin,
hasLeading: hasLeading ?? this.hasLeading,
separatorColor: separatorColor ?? this.separatorColor,
);