notifyFieldUpdated static method

void notifyFieldUpdated(
  1. Object object,
  2. int index
)

Implementation

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