removeRegion method

Future<TileRegion> removeRegion(
  1. String id
)

On successful tile region removal, this will complete with the removed tile region. Otherwise, this will complete with an error. @param id: The tile region id.

Implementation

Future<TileRegion> removeRegion(String id) {
  return _api.removeRegion(id);
}