removeRoute method

Future<String> removeRoute()

Implementation

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