fromJson static method
Implementation
static PAAttribute? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new PAAttribute();
result.type = jsonObject["type"];
result.value = jsonObject["value"];
return result;
}
static PAAttribute? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new PAAttribute();
result.type = jsonObject["type"];
result.value = jsonObject["value"];
return result;
}