decode method
Implementation
@override
void decode(KeyedArchive json) {
super.decode(json);
description = json.decode("description");
if (type == APIType.array) {
items = json.decodeObject("items", () => APIProperty());
}
}
@override
void decode(KeyedArchive json) {
super.decode(json);
description = json.decode("description");
if (type == APIType.array) {
items = json.decodeObject("items", () => APIProperty());
}
}