CPDFBookmark constructor

CPDFBookmark({
  1. required String title,
  2. required int pageIndex,
  3. DateTime? date,
  4. String uuid = '',
})

Implementation

CPDFBookmark({
  required this.title,
  required this.pageIndex,
  this.date,
  this.uuid = ''
});