ModelRelation.create constructor
Implementation
ModelRelation.create(this.id, String? name,
{String? targetId, String? targetName}) {
this.name = name;
if (targetId != null) this.targetId = IdUid.fromString(targetId);
if (targetName != null) this.targetName = targetName;
}