isImageDoc method
Checks if the PDF document is an image document. This is a time-consuming operation that depends on the document size.
example:
var isImageDoc = await document.isImageDoc();
Implementation
Future<bool> isImageDoc() async {
return await _channel.invokeMethod('is_image_doc');
}