Link constructor

const Link({
  1. String? href,
  2. String? media,
  3. String? rel,
  4. String? sizes,
  5. String? type,
  6. String? accesskey,
  7. bool autofocus = false,
  8. List<StyleClass>? classList,
  9. bool contentEditable = false,
  10. String? contextmenu,
  11. String? dir,
  12. bool hidden = false,
  13. String? id,
  14. String? lang,
  15. String? role,
  16. bool spellcheck = false,
  17. List<StyleCSS>? styleList,
  18. int? tabindex,
  19. String? title,
})

Implementation

const Link({
  this.href,
  this.media,
  this.rel,
  this.sizes,
  this.type,
  this.accesskey,
  this.autofocus = false,
  this.classList,
  this.contentEditable = false,
  this.contextmenu,
  this.dir,
  this.hidden = false,
  this.id,
  this.lang,
  this.role,
  this.spellcheck = false,
  this.styleList,
  this.tabindex,
  this.title,
});