FlListView constructor

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

Implementation

FlListView({
  Key? key,
  this.count,
  required this.getCell,
  this.loadMore,
  this.flListViewType = FlListViewType.column,
  this.onRefresh,
  this.appBar,
}) : super(key: key);