fromJson static method
- dynamic jsonObject
Implementation
@visibleForTesting
static PAResourcesIssuer? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new PAResourcesIssuer();
result._data = base64Decode(jsonObject["data"]);
result._friendlyName = jsonObject["friendlyName"];
for (var item in jsonObject["attributes"])
result._attributes.addSafe(PAAttribute.fromJson(item));
return result;
}