PdfPoint constructor

const PdfPoint({
  1. required double x,
  2. required double y,
})

Creates a PdfPoint at the given x and y coordinates.

Implementation

const PdfPoint({required this.x, required this.y});