copyWith method
Implementation
RelationBean copyWith({String? id, String? self}) {
return RelationBean(
id: id ?? this.id,
self: self ?? this.self,
);
}
RelationBean copyWith({String? id, String? self}) {
return RelationBean(
id: id ?? this.id,
self: self ?? this.self,
);
}