recognizeByFile method
Recognize MRZ from a file
filename
is the path of the file
Returns a list of MRZ lines
Implementation
@override
Future<List<List<MrzLine>>?> recognizeByFile(String filename) async {
return _dlrManager.recognizeByFile(filename);
}