modified method

dynamic modified(
  1. String propertyName
)
Notify listeners that a property was modified.

Implementation

modified(String propertyName) {
  var valueObject = new ValueObject();
  if (getPropertyValue(propertyName, valueObject)) {
    var pt = _template.getPropertyTemplateByName(propertyName);
    if (pt != null) emitModification(pt, valueObject.value);
  }
}