CryListView constructor

CryListView({
  1. Key? key,
  2. int? count,
  3. required IntWidgetFunction getCell,
  4. VoidCallback? loadMore,
  5. CryListViewType cryListViewType = CryListViewType.column,
  6. RefreshCallback? onRefresh,
  7. AppBar? appBar,
})

Implementation

CryListView({
  Key? key,
  this.count,
  required this.getCell,
  this.loadMore,
  this.cryListViewType = CryListViewType.column,
  this.onRefresh,
  this.appBar,
}) : super(key: key);