SliverPinnedToBoxAdapter constructor

const SliverPinnedToBoxAdapter({
  1. Key? key,
  2. Widget? child,
})

Creates a pinned sliver that contains a single box widget.

Implementation

const SliverPinnedToBoxAdapter({
  Key? key,
  Widget? child,
}) : super(key: key, child: child);