get method

Future<Glossary> get(
  1. String id
)

Retrieves the glossary through its id, without the glossary entries

Implementation

Future<Glossary> get(String id) async =>
    _handleGet('$_path/$id', fromJson: Glossary.fromJson);