PageStorage constructor
Creates a widget that provides a storage bucket for its descendants.
The bucket
argument must not be null.
Implementation
const PageStorage({
Key key,
@required this.bucket,
@required this.child
}) : assert(bucket != null),
super(key: key);