printImage method

Future<bool> printImage(
  1. String base64Encoded, {
  2. double width = 600,
})

Print an image from a base64 encoded string

Implementation

Future<bool> printImage(String base64Encoded, {double width = 600}) {
  return XprinterPlatform.instance.printImage(base64Encoded, width: width);
}