OpenMorePage typedef
OpenMorePage =
void Function({List<SelectionEntity> moreSelections, bool updateData})
打开更多筛选页面,
updateData
是否要更新更多筛选的数据,
moreSelections
最新的更多筛选数据,是否更新取决于 updateData
Implementation
typedef OpenMorePage = void Function(
{bool updateData, List<SelectionEntity> moreSelections});