PaperFormat.mm constructor

PaperFormat.mm({
  1. String name = "",
  2. required num width,
  3. required num height,
})

Implementation

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