decode method
Implementation
void decode(KeyedArchive object) {
super.decode(object);
availableValues = List<String>.from(object.decode("enum"));
defaultValue = object.decode("default");
description = object.decode("description");
}
void decode(KeyedArchive object) {
super.decode(object);
availableValues = List<String>.from(object.decode("enum"));
defaultValue = object.decode("default");
description = object.decode("description");
}