Link constructor

Link({
  1. String? href,
  2. String? hreflang,
  3. String? media,
  4. String? rel,
  5. String? title,
  6. String? type,
  7. String? value,
})

Implementation

Link({
  this.href,
  this.hreflang,
  this.media,
  this.rel,
  this.title,
  this.type,
  this.value,
});