CustomRefreshView<T> constructor

const CustomRefreshView<T>({
  1. Key? key,
  2. required CustomRefreshWidgetBuilder<T> builder,
  3. required CustomRefreshController<T> controller,
  4. Header? header,
  5. Footer? footer,
  6. ValueChanged<bool>? onRefreshLoad,
  7. bool enableLoad = true,
  8. bool initRefresh = true,
  9. bool enableRefresh = true,
})

Implementation

const CustomRefreshView({
  super.key,
  required this.builder,
  required this.controller,
  this.header,
  this.footer,
  this.onRefreshLoad,
  this.enableLoad = true,
  this.initRefresh = true,
  this.enableRefresh = true,
});