copyWith method
Implementation
Scope copyWith({ProjectDetails? project, ScopeType? type}) {
return Scope(
project: project ?? this.project,
type: type ?? this.type,
);
}
Scope copyWith({ProjectDetails? project, ScopeType? type}) {
return Scope(
project: project ?? this.project,
type: type ?? this.type,
);
}