MeSHDataLinksRelation constructor

MeSHDataLinksRelation(
  1. String fromNodeId,
  2. String toNodeId,
  3. String iri
)

Implementation

MeSHDataLinksRelation(
  String fromNodeId,
  String toNodeId,
  this.iri,
) : super(
        type: MeSHDataRelationType.links.toString(),
        properties: {"iri": iri},
        fromNodeId: fromNodeId,
        toNodeId: toNodeId,
        labelProperty: "iri",
      );