playOther method

void playOther(
  1. String key
)

Method used to play specific animation registred in others

Implementation

void playOther(String key) {
  if (others.containsKey(key) == true) {
    if (!runToTheEndFastAnimation) {
      _fastAnimation = null;
    }
    _current = others[key];
    _currentType = SimpleAnimationEnum.custom;
  }
}