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