createDefault static method

RotateAnimation createDefault()

Создание анимации поворота по умолчанию

Implementation

static RotateAnimation createDefault() {
  return RotateAnimation(
    start: 0,
    end: 200,
    angle: 0.0,
    pivotX: 0.5,
    pivotY: 0.5,
  );
}