printImage method

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

Print an image from a base64 encoded string

Implementation

Future<bool> printImage(String base64Encoded, {double width = 460}) {
  throw UnimplementedError('printImage() has not been implemented.');
}