copyWith method

ProjectId copyWith({
  1. String? id,
})

Implementation

ProjectId copyWith({String? id}) {
  return ProjectId(
    id: id ?? this.id,
  );
}