updateProjectConfig method

Future<ProjectConfig> updateProjectConfig(
  1. UpdateProjectConfigRequest projectConfigOptions
)

Updates an existing project configuration.

projectConfigOptions - The properties to update on the project.

Returns a Future fulfilled with the updated project config.

Implementation

Future<ProjectConfig> updateProjectConfig(
  UpdateProjectConfigRequest projectConfigOptions,
) async {
  final response = await _authRequestHandler.updateProjectConfig(
    projectConfigOptions,
  );
  return ProjectConfig.fromServerResponse(response);
}