setPointCurrentLocation method
Implementation
void setPointCurrentLocation({Map<String, dynamic>? attributes}) async {
const method = '/setPointCurrentLocation';
try {
_channel.invokeMethod(method, attributes);
} on PlatformException catch (e) {
if(kDebugMode) print(e);
return null;
}
}