setPoint4326 method

void setPoint4326(
  1. AGMLViewPoint viewPoint
)

Implementation

void setPoint4326(AGMLViewPoint viewPoint) async {
  const method = '/setPoint4326';
  try {
    _channel.invokeMethod(method, viewPoint.toJson());
  } on PlatformException catch (e) {
    if(kDebugMode) print(e);
    return null;
  }
}