getTranslations method

Future<ListModelResponse<Translation>> getTranslations({
  1. Locale? language,
  2. int limit = 50,
  3. int skip = 0,
})

Implementation

Future<ListModelResponse<Translation>> getTranslations({
  Locale? language,
  int limit = 50,
  int skip = 0,
}) =>
    Translation.list(
        sourceText: this, language: language, limit: limit, skip: skip);