mergeAnnotations static method

Future<void> mergeAnnotations(
  1. String xfdf
)

Merges the given XFDF annotation string to the current document.

Implementation

static Future<void> mergeAnnotations(String xfdf) {
  return _channel.invokeMethod(
      Functions.mergeAnnotations, <String, dynamic>{Parameters.xfdf: xfdf});
}