copyWith method
Implementation
Relation copyWith({
String? name,
Label<RelationLabel>? label,
PropertyMetadata? metadata,
}) => Relation(
name: name ?? this.name,
label: label ?? this.label,
metadata: metadata ?? this.metadata,
);
Relation copyWith({
String? name,
Label<RelationLabel>? label,
PropertyMetadata? metadata,
}) => Relation(
name: name ?? this.name,
label: label ?? this.label,
metadata: metadata ?? this.metadata,
);