printImage method

Future<bool> printImage(
  1. String imagePath, {
  2. double? x,
  3. double? y,
  4. double? width,
  5. double? height,
})

Print an image

Implementation

Future<bool> printImage(
  String imagePath, {
  double? x,
  double? y,
  double? width,
  double? height,
}) {
  throw UnimplementedError('printImage() has not been implemented.');
}