copyWith method

StatusMappingDTO copyWith({
  1. String? issueTypeId,
  2. String? projectId,
  3. 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,
  );
}