animationType property

AnimationType? animationType

Implementation

AnimationType? get animationType => _animationType;
void animationType=(AnimationType? value)

Implementation

set animationType(AnimationType? value) {
  if (_animationType != value) {
    _animationType = _animationType == null ? AnimationType.loading : value;
    _startAnimations();
  }
}