save method

Future<int?> save(
  1. String filename
)

Save the current image to the given filename.

Implementation

Future<int?> save(String filename) {
  return FlutterDocumentScanSdkPlatform.instance.save(filename);
}