copyWith method

RelationExpandable copyWith({
  1. String? relationData,
  2. String? source,
  3. String? target,
})

Implementation

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