printImageFile method

  1. @override
void printImageFile(
  1. String filePath,
  2. int align,
  3. bool isAutoFeed
)
override

Implementation

@override
void printImageFile(String filePath, int align, bool isAutoFeed) {
  var map = HashMap<String, Object>();
  map["file_path"] = filePath;
  map["align"] = align;
  map["auto_feed"] = isAutoFeed;
  methodChannel.invokeMethod("printImageFile", map);
}