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