copyWith method

ProjectIdentifierBean copyWith({
  1. int? id,
  2. String? key,
})

Implementation

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