PdfRect constructor

const PdfRect(
  1. double left,
  2. double bottom,
  3. double width,
  4. double height,
)

Creates a rectangle from left, bottom, width and height.

Implementation

const PdfRect(this.left, this.bottom, this.width, this.height);