copyWith method
Implementation
WebApiModulesAccountServicesJwtOktaRequest copyWith(
{String? email, String? token}) {
return WebApiModulesAccountServicesJwtOktaRequest(
email: email ?? this.email, token: token ?? this.token);
}
WebApiModulesAccountServicesJwtOktaRequest copyWith(
{String? email, String? token}) {
return WebApiModulesAccountServicesJwtOktaRequest(
email: email ?? this.email, token: token ?? this.token);
}