pageScope property
The scope of the page. Store mutable state here that you need to dispose on pop. Prefer immutable state, and prefer not using a scope if you don't need to.
Implementation
final Object? pageScope;
The scope of the page. Store mutable state here that you need to dispose on pop. Prefer immutable state, and prefer not using a scope if you don't need to.
final Object? pageScope;