faceMatchModeString property
String
get
faceMatchModeString
Returns the string representation of the face matching mode.
The string representation is used to identify the face matching mode in API calls or configurations.
Implementation
String get faceMatchModeString {
switch (this) {
case FaceMatchMode.faceFace:
return 'FACE_FACE';
case FaceMatchMode.faceIdFaceString:
return 'FACE_ID_FACE_STRING';
default:
return 'FACE_ID';
}
}