getConfigs method
Gets all configs from the server
Implementation
Future<ParseResponse> getConfigs() async {
try {
final String uri = '${ParseCoreData().serverUrl}/config';
final ParseNetworkResponse result = await _client.get(uri);
return handleResponse<ParseConfig>(
this,
result,
ParseApiRQ.getConfigs,
_debug,
parseClassName,
);
} on Exception catch (e) {
return handleException(e, ParseApiRQ.getConfigs, _debug, parseClassName);
}
}