SliverEnsureSemantics constructor

const SliverEnsureSemantics({
  1. Key? key,
  2. required Widget sliver,
})

Creates a sliver that ensures its sliver child is included in the semantics tree.

Implementation

const SliverEnsureSemantics({super.key, required Widget sliver}) : super(child: sliver);