copyWith method
AssociateSecuritySchemeWithProjectDetails
copyWith({
- List<
OldToNewSecurityLevelMappingsBean> ? oldToNewSecurityLevelMappings, - String? projectId,
- String? schemeId,
Implementation
AssociateSecuritySchemeWithProjectDetails copyWith(
{List<OldToNewSecurityLevelMappingsBean>? oldToNewSecurityLevelMappings,
String? projectId,
String? schemeId}) {
return AssociateSecuritySchemeWithProjectDetails(
oldToNewSecurityLevelMappings:
oldToNewSecurityLevelMappings ?? this.oldToNewSecurityLevelMappings,
projectId: projectId ?? this.projectId,
schemeId: schemeId ?? this.schemeId,
);
}