getCurrentPosition method
Implementation
Future<Object?> getCurrentPosition() async {
Object? result =
await _callJavascriptAPIWithResult("getCurrentPosition", '');
if (result == null || result == 'null') {
return null;
}
return result;
}