@@ -66,12 +66,6 @@ class BlinkIdMultiSideRecognizerResult extends RecognizerResult {
6666 ///The additional number of the document.
6767 StringResult ? documentAdditionalNumber;
6868
69- ///Returns DataMatchStateSuccess if data from scanned parts/sides of the document match,
70- /// DataMatchStateFailed otherwise. For example if date of expiry is scanned from the front and back side
71- /// of the document and values do not match, this method will return DataMatchStateFailed. Result will
72- /// be DataMatchStateSuccess only if scanned values for all fields that are compared are the same.
73- DataMatchState ? documentDataMatch;
74-
7569 ///The document number.
7670 StringResult ? documentNumber;
7771
@@ -100,7 +94,7 @@ class BlinkIdMultiSideRecognizerResult extends RecognizerResult {
10094 Rectangle ? faceImageLocation;
10195
10296 ///side of document that face image is located on if enabled with returnFaceImage property.
103- Side ? faceImageSide;
97+ DocumentSide ? faceImageSide;
10498
10599 ///The father's name of the document owner.
106100 StringResult ? fathersName;
@@ -226,9 +220,7 @@ class BlinkIdMultiSideRecognizerResult extends RecognizerResult {
226220 this .dateOfIssue = nativeResult["dateOfIssue" ] != null ? DateResult (Map <String , dynamic >.from (nativeResult["dateOfIssue" ])) : null ;
227221
228222 this .documentAdditionalNumber = nativeResult["documentAdditionalNumber" ] != null ? StringResult (Map <String , dynamic >.from (nativeResult["documentAdditionalNumber" ])) : null ;
229-
230- this .documentDataMatch = DataMatchState .values[nativeResult["documentDataMatch" ]];
231-
223+
232224 this .documentNumber = nativeResult["documentNumber" ] != null ? StringResult (Map <String , dynamic >.from (nativeResult["documentNumber" ])) : null ;
233225
234226 this .documentOptionalAdditionalNumber = nativeResult["documentOptionalAdditionalNumber" ] != null ? StringResult (Map <String , dynamic >.from (nativeResult["documentOptionalAdditionalNumber" ])) : null ;
0 commit comments