fromJsObject static method
Creates class instance from JavaScript object
Implementation
static Country? fromJsObject(IdentificationResultCountry? jsObject) {
if (jsObject == null) {
return null;
}
return Country(jsObject.code, jsObject.name);
}