beginAction method

void beginAction(
  1. Action action, {
  2. bool breakChain = false,
})

Implementation

void beginAction(Action action, {bool breakChain = false}) {
  if (breakChain) {
    breakCoalescing();
  }
  _currentAction = action;
}