refreshGroup method

  1. @protected
void refreshGroup(
  1. Object id
)

Implementation

@protected
void refreshGroup(Object id) {
  assert(_debugAssertNotDisposed());

  // /// This debounce the call to update.
  // /// It prevent errors and duplicates builds
  // if (_microtask == _version) {
  //   _microtask++;
  //   scheduleMicrotask(() {
  //     _version++;
  //     _microtask = _version;
  _notifyIdUpdate(id);
  // });
  // }
}