copyWith method

AssociateSecuritySchemeWithProjectDetails copyWith({
  1. List<OldToNewSecurityLevelMappingsBean>? oldToNewSecurityLevelMappings,
  2. String? projectId,
  3. 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,
  );
}