TranslatorInfo constructor

TranslatorInfo({
  1. required String uuid,
  2. required String userUUID,
  3. required int translatedCount,
  4. required int votedCount,
  5. required DateTime joinAt,
})

Implementation

TranslatorInfo({
  required this.uuid,
  required this.userUUID,
  required this.translatedCount,
  required this.votedCount,
  required this.joinAt,
});