readPdf static method

Future<String> readPdf(
  1. String bookInfo
)

Implementation

static Future<String> readPdf(String bookInfo) async {
  final String info = await _channel
      .invokeMethod('readPdf', <String, dynamic>{'bookInfo': bookInfo});
  return info;
}