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