ModelNotFoundException constructor

ModelNotFoundException({
  1. required OCRModule module,
  2. String reason = 'Model not downloaded',
})

Implementation

ModelNotFoundException({
  required this.module,
  this.reason = 'Model not downloaded',
}) : super(message: 'Model not found: $module ($reason)');