setRoute method
Implementation
Future<String> setRoute(RoutePosition position) async {
try {
final String status = await _platform.invokeMethod('setRoute', position.toJson());
return status;
} on PlatformException catch (e) {
log('Platform exeption setRoute() message: $e');
return "ERROR";
}
}