fromJson static method
- dynamic jsonObject
Allows you to deserialize object.
Implementation
static FaceApiSearchParams? fromJson(jsonObject) {
var result = new FaceApiSearchParams();
if (jsonObject == null) return null;
result.limit = jsonObject["limit"];
result.threshold = _toDouble(jsonObject["threshold"])!;
result.groupIds = jsonObject["groupIds"];
return result;
}