removeAnnotation static method

Future<bool?> removeAnnotation(
  1. dynamic annotation
)

Removes the given annotation from the presented document. jsonAnnotation can either be a JSON string or a valid JSON Dictionary (iOS) / HashMap (Android).

Implementation

static Future<bool?> removeAnnotation(dynamic annotation) async =>
    NutrientFlutterPlatform.instance.removeAnnotation(annotation);