copyWith method

Implementation

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