Linkeable constructor

const Linkeable({
  1. required String word,
  2. required String linkType,
  3. String? link,
  4. String? linkTargetCode,
})

Implementation

const Linkeable({
  required this.word,
  required this.linkType,
  this.link,
  this.linkTargetCode,
});