PdfTextLine constructor

PdfTextLine(
  1. Rect bounds,
  2. String text,
  3. int pageNumber
)

Constructor of PdfTextLine.

Implementation

PdfTextLine(Rect bounds, String text, int pageNumber) {
  _bounds = bounds;
  _text = text;
  _pageNumber = pageNumber;
}