getCurrentLocation static method

Future<Map<String, Object>?> getCurrentLocation()

Implementation

static Future<Map<String, Object>?> getCurrentLocation() async {
  final Map<String, Object>? coords =
      await _channel.invokeMapMethod(OkHiNativeMethod.getCurrentLocation);
  return coords;
}