StatsLocaleResult constructor

StatsLocaleResult({
  1. required int keyCount,
  2. required int translationCount,
  3. required int wordCount,
  4. required int characterCount,
})

Implementation

StatsLocaleResult({
  required this.keyCount,
  required this.translationCount,
  required this.wordCount,
  required this.characterCount,
});