printBlock method

Future<bool> printBlock(
  1. String text, {
  2. double? x,
  3. double? y,
  4. double? width,
  5. double? height,
  6. int? lineWidth,
  7. int? lineStyle,
})

Print a block with text

Implementation

Future<bool> printBlock(
  String text, {
  double? x,
  double? y,
  double? width,
  double? height,
  int? lineWidth,
  int? lineStyle,
}) {
  throw UnimplementedError('printBlock() has not been implemented.');
}