SpeechPackProgess constructor Null safety

SpeechPackProgess(
  1. {required String language,
  2. required double progress,
  3. required SpeechPackState state,
  4. StreamSubscription<List<int>>? stream}
)

Download progress

Implementation

SpeechPackProgess({
  required this.language,
  required this.progress,
  required this.state,
  this.stream,
});