fetch method

Future<ParseSchema?> fetch()

Fetch schema data from Parse Cloud

Implementation

Future<ParseSchema?> fetch() async {
  final result = await parseHTTPClient.get(path, useMasterKey: true);
  if (result is Map) return ParseSchema.fromJson(result);
  return null;
}