copyWith method
StatusMappingDTO
copyWith({
- String? issueTypeId,
- String? projectId,
- List<
StatusMigration> ? statusMigrations,
Implementation
StatusMappingDTO copyWith(
{String? issueTypeId,
String? projectId,
List<StatusMigration>? statusMigrations}) {
return StatusMappingDTO(
issueTypeId: issueTypeId ?? this.issueTypeId,
projectId: projectId ?? this.projectId,
statusMigrations: statusMigrations ?? this.statusMigrations,
);
}