ModelRelation.create constructor

ModelRelation.create(
  1. IdUid id,
  2. String? name, {
  3. String? targetId,
  4. String? targetName,
  5. int? externalType,
  6. String? externalName,
  7. bool uidRequest = false,
})

Implementation

ModelRelation.create(this.id, String? name,
    {String? targetId,
    String? targetName,
    int? externalType,
    String? externalName,
    this.uidRequest = false}) {
  this.name = name;
  if (targetId != null) this.targetId = IdUid.fromString(targetId);
  if (targetName != null) this.targetName = targetName;
  if (externalType != null) {
    this.externalType = externalType;
  }
  if (externalName != null) {
    this.externalName = externalName;
  }
}