removePolyline method

Future<String> removePolyline()

Implementation

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