SentenceInfo constructor

const SentenceInfo({
  1. required String sentence,
  2. required List<String> translations,
  3. required Uint8List audioData,
})

Implementation

const SentenceInfo({
  required this.sentence,
  required this.translations,
  required this.audioData,
});