fromJson static method
Implementation
@visibleForTesting
static VerifyMatchResponse? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new VerifyMatchResponse._privateConstructor();
result._passed = jsonObject["passed"];
result._similarity = _toDouble(jsonObject["similarity"])!;
return result;
}