Relationship constructor

Relationship({
  1. String? relationshipName,
  2. String? resourceId,
  3. String? resourceName,
  4. ResourceType? resourceType,
})

Implementation

Relationship({
  this.relationshipName,
  this.resourceId,
  this.resourceName,
  this.resourceType,
});