bind method

CellCupertinoListSection bind({
  1. ValueCell<List<Widget>?>? children,
  2. ValueCell<Widget?>? header,
  3. ValueCell<Widget?>? footer,
  4. ValueCell<EdgeInsetsGeometry>? margin,
  5. ValueCell<Color>? backgroundColor,
  6. ValueCell<BoxDecoration?>? decoration,
  7. ValueCell<Clip>? clipBehavior,
  8. ValueCell<double>? dividerMargin,
  9. ValueCell<double?>? additionalDividerMargin,
  10. ValueCell<double?>? topMargin,
  11. ValueCell<bool>? hasLeading,
  12. 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,
    );