autoListen method

void autoListen()

Implementation

void autoListen() {
  final state = Zone.current[_ChangeScoopState] as _ChangeScoopState?;
  if (state != null) {
    state.addListener(this);
  }
}