isAnimationEqual method

bool isAnimationEqual(
  1. TranslationAnimatedWidget other
)

Implementation

bool isAnimationEqual(TranslationAnimatedWidget other) =>
    listEquals(values, other.values) &&
    duration == other.duration &&
    curve == other.curve &&
    delay == other.delay;