copyWithWrapped method
Implementation
WebApiModulesAccountServicesJwtOktaSessionRequest copyWithWrapped(
{Wrapped<String?>? token, Wrapped<String?>? apiurl}) {
return WebApiModulesAccountServicesJwtOktaSessionRequest(
token: (token != null ? token.value : this.token),
apiurl: (apiurl != null ? apiurl.value : this.apiurl));
}