PdfRect.fromLTWH constructor

PdfRect.fromLTWH(
  1. double left,
  2. double top,
  3. double width,
  4. double height,
)

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

Implementation

factory PdfRect.fromLTWH(
    double left, double top, double width, double height) {
  return PdfRect(left, top, width, height);
}