removeAnnotation static method

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

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 jsonAnnotation) async =>
    PspdfkitFlutterPlatform.instance.removeAnnotation(jsonAnnotation);