loadMore property

dynamic Function(int page, int pageSize) loadMore
final

Load more data.

It is called every time current PageView is at position:

listData.length - (pageSize/2)

The first argument is current page of video list (start at 0),

it depends on pageSize.

The seconds argument is your pageSize

Implementation

final Function(int page, int pageSize) loadMore;