canExecuteAnimation method

bool canExecuteAnimation(
  1. DirectionAnimationMethod method
)

Implementation

bool canExecuteAnimation(DirectionAnimationMethod method) {
  for (final callback in _executionListeners) {
    if (!callback(method)) {
      return false;
    }
  }
  return true;
}