RitoHitEntry constructor

const RitoHitEntry({
  1. required int pageIndex,
  2. required RitoRect bounds,
  3. required String text,
  4. String? href,
  5. RitoSourcePoint? sourcePoint,
  6. String? imageSrc,
  7. String? imageAlt,
  8. String? footnoteKey,
  9. bool footnotePending = false,
})

Implementation

const RitoHitEntry({
  required this.pageIndex,
  required this.bounds,
  required this.text,
  this.href,
  this.sourcePoint,
  this.imageSrc,
  this.imageAlt,
  this.footnoteKey,
  this.footnotePending = false,
});