printImage method

Future<bool> printImage({
  1. required Uint8List imageData,
  2. int align = 1,
  3. int paperWidth = 52,
  4. bool isLabel = false,
  5. bool tear = true,
})

Print an image

Implementation

Future<bool> printImage({
  required Uint8List imageData,
  int align = 1,
  int paperWidth = 52,
  bool isLabel = false,
  bool tear = true,
}) {
  throw UnimplementedError('printImage() has not been implemented.');
}