EmptyConfig constructor

EmptyConfig({
  1. String? text,
  2. String? btnText,
  3. String? image,
  4. bool btnVisible = true,
  5. Widget? imageView,
  6. Widget? textView,
  7. Widget? button,
  8. Color backgroundColor = Colors.white,
  9. bool showEmptyViewWhenListEmpty = true,
})

Implementation

EmptyConfig({
  this.text,
  this.btnText,
  this.image,
  this.btnVisible = true,
  this.imageView,
  this.textView,
  this.button,
  this.backgroundColor = Colors.white,
  this.showEmptyViewWhenListEmpty = true,
});