getLocation method

  1. @override
Future<Location> getLocation(
  1. GetLocationRequest request
)
override

Gets information about a location.

Throws a http.ClientException if there were problems communicating with the API service. Throws a ServiceException if the API method failed for any reason.

Implementation

@override
Future<Location> getLocation(GetLocationRequest request) async {
  if (isClosed) throw StateError('Service is closed');

  if (_getLocation case final getLocation?) {
    return getLocation(request);
  }
  throw UnsupportedError('getLocation');
}