copyWithWrapped method

WebApiModulesAccountServicesJwtAzureADRequest copyWithWrapped({
  1. Wrapped<String?>? email,
  2. Wrapped<String?>? token,
  3. Wrapped<String?>? tenant,
  4. Wrapped<String?>? audience,
  5. Wrapped<String?>? issuer,
})

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),
  );
}