copyWith method

ProjectIdentifiers copyWith({
  1. int? id,
  2. String? key,
  3. String? self,
})

Implementation

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