FunStateRefresherObx<T> constructor

const FunStateRefresherObx<T>({
  1. Key? key,
  2. required FunStateListRefresherController<T> controller,
  3. required FunStateBuilder builder,
  4. Widget? onLoading,
  5. Widget? onEmpty,
  6. FunStateErrorBuilder? onError,
  7. bool enablePullUp = false,
  8. Widget? header,
  9. Widget? footer,
})

Implementation

const FunStateRefresherObx({
  Key? key,
  required this.controller,
  required this.builder,
  this.onLoading,
  this.onEmpty,
  this.onError,
  this.enablePullUp: false,
  this.header,
  this.footer,
}) : super(key: key);