I want to create a on scroll data load. currently I am getting data(ad list) from a api call as a Future<List<Ads>>
in scroll listener function I just want to append next page data list.
there was a example of doing it with a list, I just want to do the same with a Future list
items.addAll(List.generate(42, (index) => 'Inserted $index'));
>``` and you want to append that to a ```List``` ?
– Hamza Mogni Dec 17 '21 at 11:01> not to a List
– Irushi Nathasha Kuruppu Dec 17 '21 at 11:08