copyWith method
Implementation
StatusScope copyWith({ProjectId? project, StatusScopeType? type}) {
return StatusScope(
project: project ?? this.project,
type: type ?? this.type,
);
}
StatusScope copyWith({ProjectId? project, StatusScopeType? type}) {
return StatusScope(
project: project ?? this.project,
type: type ?? this.type,
);
}