Relation constructor

Relation({
  1. required String name,
  2. RelationData? relationData,
  3. dynamic source,
  4. dynamic target,
  5. RelationExpandable? expandable,
  6. required GenericLinks links,
})

Implementation

Relation(
    {required this.name,
    this.relationData,
    this.source,
    this.target,
    this.expandable,
    required this.links});