PdfSignatureBounds.topLeft constructor
PdfSignatureBounds.topLeft({})
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);