scrollUp method

dynamic scrollUp(
  1. ScrollController scrollController
)

Implementation

scrollUp(ScrollController scrollController) async {
  await scrollController.animateTo(
    0,
    duration: const Duration(milliseconds: 350),
    curve: Curves.ease,
  );
  update();
}