RenderSliverFixedExtentList constructor
Creates a sliver that contains multiple box children that have a given extent in the main axis.
The childManager
argument must not be null.
Implementation
RenderSliverFixedExtentList({
@required RenderSliverBoxChildManager childManager,
double itemExtent,
}) : _itemExtent = itemExtent, super(childManager: childManager);