scrollMore method
Implementation
Future<void> scrollMore() async {
if(scrollables.isEmpty) {
return;
}
final scrollable = scrollables.first;
return scrollable.scrollMore();
}
Future<void> scrollMore() async {
if(scrollables.isEmpty) {
return;
}
final scrollable = scrollables.first;
return scrollable.scrollMore();
}