getCurrentLocation static method

Future<LocationResponse> getCurrentLocation()

Implementation

static Future<LocationResponse> getCurrentLocation() async {
  return LocationResponse.fromJson(
      await _captureChannel.invokeMethod(_Method.getCurrentLocation));
}