getBoundingBox method

  1. @override
Future<BoundingBox> getBoundingBox()

Returns the maximum possible bounding box as this datastore has no fixed bounds.

Implementation

@override
Future<BoundingBox> getBoundingBox() {
  return Future.value(BoundingBox.max());
}