lemmas property

LemmasServiceImpl lemmas

Service to access lemmas endpoint in Oxford API

Visit official Oxford API documentation

Use this to check if a word exists in the dictionary, or what 'root' form it links to (e.g., swimming > swim). The response tells you the possible lemmas for a given inflected word. This can then be combined with other endpoints to retrieve more information.

Implementation

LemmasServiceImpl get lemmas =>
    _client.getService<LemmasService>() as LemmasServiceImpl;