getProjectConfig method

Future<ProjectConfig> getProjectConfig()

Get the project configuration.

Returns a Future fulfilled with the project configuration.

Implementation

Future<ProjectConfig> getProjectConfig() async {
  final response = await _authRequestHandler.getProjectConfig();
  return ProjectConfig.fromServerResponse(response);
}