RootRestorationScope constructor Null safety
Creates a RootRestorationScope.
Providing null as the restorationId turns off state restoration for the child and its descendants.
The child must not be null.
Implementation
const RootRestorationScope({
super.key,
required this.restorationId,
required this.child,
}) : assert(child != null);