clearRoute method

  1. @override
Future<bool?> clearRoute()
override

Implementation

@override
Future<bool?> clearRoute() async {
  try {
    return await _channel.invokeMethod('map#clearRoute');
  } on PlatformException catch (e) {
    return new Future.error(e);
  }
}