toFaceSearchSortBy method
Implementation
FaceSearchSortBy toFaceSearchSortBy() {
switch (this) {
case 'INDEX':
return FaceSearchSortBy.$index;
case 'TIMESTAMP':
return FaceSearchSortBy.timestamp;
}
throw Exception('$this is not known in enum FaceSearchSortBy');
}