getAll method

Future<ParseResponse> getAll()

Gets all objects from this table - Limited response at the moment

Implementation

Future<ParseResponse> getAll() async {
  try {
    final Uri url = getSanitisedUri(_client, _path);
    final ParseNetworkResponse result = await _client.get(url.toString());
    return handleResponse<ParseObject>(
      this,
      result,
      ParseApiRQ.getAll,
      _debug,
      parseClassName,
    );
  } on Exception catch (e) {
    return handleException(e, ParseApiRQ.getAll, _debug, parseClassName);
  }
}