TranslationInfo constructor

TranslationInfo({
  1. required String roundId,
  2. required String sender,
  3. required String text,
  4. required Map<String, String> translation,
})

Implementation

TranslationInfo({
  required this.roundId,
  required this.sender,
  required this.text,
  required this.translation,
});