printImage method

Future<void> printImage(
  1. String base64Encoded,
  2. double width
)

Prints an image from a base64 encoded string.

  • base64Encoded The base64 encoded image data.

Implementation

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