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