importAnnotations method

Future<void> importAnnotations(
  1. String xfdf
)

Imports the given XFDF annotation string to the current document.

Implementation

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