ReciterError constructor

ReciterError({
  1. required ErrorCategory errorType,
  2. required SpeechErrorType speechErrorType,
  3. TajweedDurationStatus? durationStatus,
  4. required String expectedPh,
  5. required String predictedPh,
  6. TajweedRule? expectedRule,
  7. TajweedRule? predictedRule,
  8. double? expectedDuration,
  9. double? actualDuration,
})

Implementation

ReciterError({
  required this.errorType,
  required this.speechErrorType,
  this.durationStatus,
  required this.expectedPh,
  required this.predictedPh,
  this.expectedRule,
  this.predictedRule,
  this.expectedDuration,
  this.actualDuration,
});