scrollMore method

Future<void> scrollMore()

Implementation

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