RenderSliverGroup constructor

RenderSliverGroup({
  1. List<RenderSliver>? children,
})

Creates a render object that lays out it children along the main axis of the viewport

Implementation

RenderSliverGroup({List<RenderSliver>? children}) {
  addAll(children);
}