fireUpdateUI method

void fireUpdateUI()

Implementation

void fireUpdateUI() {
  List<OnValue<Binder<T>>> ls = [..._updateUIList];
  for (var c in ls) {
    c(this);
  }
}