notifyFieldUpdated static method
Implementation
static void notifyFieldUpdated(Object object, int index) {
if (object is DartBaseClass) {
object.notifyFieldUpdated(index);
} else {
UnitRCLog.error("obj ${object} not DartBaseClass");
}
}