setBusyFor method

void setBusyFor(
  1. Object key,
  2. bool value
)

Sets the busy status by key and calls notify listeners

Implementation

void setBusyFor(Object key, bool value) {
  _busyStates[key] = value;
  update();
}