copyWithWrapped method

WebApiModulesAccountServicesJwtOktaRequest copyWithWrapped({
  1. Wrapped<String?>? token,
  2. Wrapped<String?>? issuer,
  3. Wrapped<String?>? audience,
})

Implementation

WebApiModulesAccountServicesJwtOktaRequest copyWithWrapped({
  Wrapped<String?>? token,
  Wrapped<String?>? issuer,
  Wrapped<String?>? audience,
}) {
  return WebApiModulesAccountServicesJwtOktaRequest(
    token: (token != null ? token.value : this.token),
    issuer: (issuer != null ? issuer.value : this.issuer),
    audience: (audience != null ? audience.value : this.audience),
  );
}