RichEntryTile constructor

const RichEntryTile({
  1. required RichDocument document,
  2. String? label,
  3. void onLinkTap(
    1. String href
    )?,
  4. Key? key,
})

Implementation

const RichEntryTile({
  required this.document,
  this.label,
  this.onLinkTap,
  super.key,
});