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