loadModel method
Loads the OCR model for the specified modelType
.
Supported types are ModelType.mrz (default) and ModelType.vin.
Returns 0
on success, or an error code on failure.
Implementation
@override
Future<int?> loadModel({ModelType modelType = ModelType.mrz}) async {
return _cvm.loadModel(modelType);
}