copyWithWrapped method
Implementation
WebApiModulesAccountServicesJwtAzureADRequest copyWithWrapped(
{Wrapped<String?>? email,
Wrapped<String?>? token,
Wrapped<String?>? tenant,
Wrapped<String?>? audience,
Wrapped<String?>? issuer}) {
return WebApiModulesAccountServicesJwtAzureADRequest(
email: (email != null ? email.value : this.email),
token: (token != null ? token.value : this.token),
tenant: (tenant != null ? tenant.value : this.tenant),
audience: (audience != null ? audience.value : this.audience),
issuer: (issuer != null ? issuer.value : this.issuer));
}