sliverToBox method

Widget sliverToBox({
  1. Key? key,
})

Wrap widget by SliverToBoxAdapter when using a widget on Sliver and CustomScrollView

Implementation

Widget sliverToBox({Key? key}) => SliverToBoxAdapter(child: this, key: key);