getPDFtext static method

Future<String> getPDFtext(
  1. String path
)

Returns string, whole text of the document

Implementation

static Future<String> getPDFtext(String path) async {
  /// Mapping the path to <key, value>
  final String pdfText = await _channel
      .invokeMethod('getPDFtext', <String, dynamic>{'path': path});
  return pdfText;
}