download method

Future<void> download(
  1. int type,
  2. String filename
)

Save a document.

Implementation

Future<void> download(int type, String filename) async {
  _webTwainManager.download(type, filename);
}