PrintPaperSize.custom constructor

PrintPaperSize.custom(
  1. int width
)

Create a custom PaperSize with a specific width

Implementation

factory PrintPaperSize.custom(int width) {
  return PrintPaperSize._internal(width);
}