PrintCommand.setPrintArea constructor

PrintCommand.setPrintArea(
  1. double width,
  2. double height
)

Implementation

factory PrintCommand.setPrintArea(double width, double height) {
  return PrintCommand(
    text: '',
    x: width,
    y: height,
  );
}