retrieve method

Future<Schema> retrieve()

Retrieves the Schema of the specified collection.

Implementation

Future<Schema> retrieve() async {
  return Schema.fromMap(await _apiCall.get(_endpointPath));
}