Shape constructor

Shape({
  1. required double pageWidth,
  2. required double pageHeight,
})

Create a new Shape for a page.

Implementation

Shape({required this.pageWidth, required this.pageHeight});