PDFQuote constructor

PDFQuote({
  1. required String text,
  2. required int pageNumber,
  3. Map<String, dynamic>? location,
})

Implementation

PDFQuote({
  required this.text,
  required this.pageNumber,
  this.location,
});