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