setPointCurrentLocation method

void setPointCurrentLocation({
  1. Map<String, dynamic>? attributes,
})

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;
  }
}