copyWith method
Implementation
RelationExpandable copyWith(
{String? relationData, String? source, String? target}) {
return RelationExpandable(
relationData: relationData ?? this.relationData,
source: source ?? this.source,
target: target ?? this.target,
);
}