SliverOverlapInjector constructor Null safety
- {Key? key,
- required SliverOverlapAbsorberHandle handle,
- Widget? sliver}
Creates a sliver that is as tall as the value of the given handle's layout extent.
The handle must not be null.
Implementation
const SliverOverlapInjector({
super.key,
required this.handle,
Widget? sliver,
}) : assert(handle != null),
super(child: sliver);