RenderSliverList constructor Null safety

RenderSliverList(
  1. {required RenderSliverBoxChildManager childManager}
)

Creates a sliver that places multiple box children in a linear array along the main axis.

The childManager argument must not be null.

Implementation

RenderSliverList({
  required super.childManager,
});