handle property
The object to notify when markNeedsLayout is called.
Implementation
SliverOverlapAbsorberHandle get handle => _handle;
Setting this will trigger notifications on the new object.
Implementation
set handle(SliverOverlapAbsorberHandle value) {
if (handle == value) {
return;
}
_handle = value;
handle._markNeedsLayout();
}