copyWith method
Implementation
SecuritySchemeWithProjects copyWith(
{int? defaultLevel,
String? description,
int? id,
String? name,
List<int>? projectIds,
String? self}) {
return SecuritySchemeWithProjects(
defaultLevel: defaultLevel ?? this.defaultLevel,
description: description ?? this.description,
id: id ?? this.id,
name: name ?? this.name,
projectIds: projectIds ?? this.projectIds,
self: self ?? this.self,
);
}