PaperFormat.mm constructor

PaperFormat.mm({
  1. required num width,
  2. required num height,
})

Implementation

PaperFormat.mm({required num width, required num height})
    : width = _mmToInches(width),
      height = _mmToInches(height);