PdfSignatureBounds.topLeft constructor

PdfSignatureBounds.topLeft({
  1. required double left,
  2. required double top,
  3. required double width,
  4. required double height,
})

Creates bounds using top-left coordinates.

Implementation

PdfSignatureBounds.topLeft({
  required double left,
  required double top,
  required double width,
  required double height,
})  : coordinateSystem = PdfCoordinateSystem.topLeft,
      rect = null,
      topLeft = _TopLeftRect(left, top, width, height);