getViewportBounds method
Implementation
@override
Future<flutter_map.LatLngBounds> getViewportBounds() async {
final bounds = await getViewportBoundsOrNull();
if (bounds == null) throw _goneError('getViewportBounds');
return bounds;
}
@override
Future<flutter_map.LatLngBounds> getViewportBounds() async {
final bounds = await getViewportBoundsOrNull();
if (bounds == null) throw _goneError('getViewportBounds');
return bounds;
}