easeOut method

void easeOut([
  1. int seconds = 1
])

Implementation

void easeOut([int seconds = 1]) =>
    animateTo(0, duration: const Duration(seconds: 1), curve: Curves.easeOut);