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