currentGeolocation method

Future<GeolocationResponse> currentGeolocation()

Implementation

Future<GeolocationResponse> currentGeolocation() async {
  return _decode(
    await doPost(buildUrl(), json.encode({}), headers: apiHeaders),
  );
}