runInAction method

void runInAction(
  1. Function action
)
inherited

Implementation

void runInAction(Function action) {
  this
      .reactionOnValidatorDisposers
      .add(reaction((_) => action(), (_) => this._checkArrayValidations()));
}