PageStorage({Key key, @required PageStorageBucket bucket, Widget child })

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);
}