UnmanagedRestorationScope constructor
- Key? key,
- RestorationBucket? bucket,
- required Widget child,
Creates an UnmanagedRestorationScope.
When bucket
is null state restoration is turned off for the child
and
its descendants.
Implementation
const UnmanagedRestorationScope({
super.key,
this.bucket,
required super.child,
});