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