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