serialize method

List<PropertyValue> serialize()
Export all properties with ResourceProperty attributed as bytes array.

Implementation

List<PropertyValue> serialize() {
  List<PropertyValue> props = <PropertyValue>[];

  for (var pt in _template.properties) {
    //   var rt = pt.info.getValue(resource, null);
    // props.add(new PropertyValue(rt, _ages[pt.index], _modificationDates[pt.index]));
  }

  return props;
}