copyWith method

Implementation

WebApiModulesAccountServicesJwtOktaSessionRequest copyWith(
    {String? token, String? apiurl}) {
  return WebApiModulesAccountServicesJwtOktaSessionRequest(
      token: token ?? this.token, apiurl: apiurl ?? this.apiurl);
}