getLastKnownLocation method
Implementation
@override
Future<LocationInfo?> getLastKnownLocation() async {
if (!Platform.isAndroid) return null;
return LocationInfo.fromJson(
await channelMethod.invokeMethod(methodGetLastKnownLocation));
}
@override
Future<LocationInfo?> getLastKnownLocation() async {
if (!Platform.isAndroid) return null;
return LocationInfo.fromJson(
await channelMethod.invokeMethod(methodGetLastKnownLocation));
}