CellCupertinoListSection constructor

const CellCupertinoListSection({
  1. Key? key,
  2. ValueCell<List<Widget>?>? children,
  3. ValueCell<Widget?>? header,
  4. ValueCell<Widget?>? footer,
  5. ValueCell<EdgeInsetsGeometry> margin = const ValueCell.value(EdgeInsets.only(bottom: 8.0)),
  6. ValueCell<Color> backgroundColor = const ValueCell.value(CupertinoColors.systemGroupedBackground),
  7. ValueCell<BoxDecoration?>? decoration,
  8. ValueCell<Clip> clipBehavior = const ValueCell.value(Clip.none),
  9. ValueCell<double> dividerMargin = const ValueCell.value(20.0),
  10. ValueCell<double?>? additionalDividerMargin,
  11. ValueCell<double?> topMargin = const ValueCell.value(22.0),
  12. ValueCell<bool> hasLeading = const ValueCell.value(true),
  13. ValueCell<Color?>? separatorColor,
})

Implementation

const CellCupertinoListSection({
  super.key,
  this.children,
  this.header,
  this.footer,
  this.margin = const ValueCell.value(EdgeInsets.only(bottom: 8.0)),
  this.backgroundColor =
      const ValueCell.value(CupertinoColors.systemGroupedBackground),
  this.decoration,
  this.clipBehavior = const ValueCell.value(Clip.none),
  this.dividerMargin = const ValueCell.value(20.0),
  this.additionalDividerMargin,
  this.topMargin = const ValueCell.value(22.0),
  this.hasLeading = const ValueCell.value(true),
  this.separatorColor,
});