Link constructor

Link({
  1. String? bookmarkId,
  2. String? headingId,
  3. String? url,
})

Implementation

Link({
  this.bookmarkId,
  this.headingId,
  this.url,
});