CPage constructor

CPage({
  1. required int height,
  2. required int width,
  3. int copies = 1,
})

Implementation

CPage({
  required int height,
  required int width,
  int copies = 1,
}) {
  _height = height;
  _width = width;
  _copies = copies;
}