EmptyViewImage constructor

const EmptyViewImage({
  1. required String text,
  2. required Widget image,
  3. double textSize = 16,
  4. Color textColor = Colors.black26,
  5. Widget? button,
  6. Key? key,
})

Implementation

const EmptyViewImage({
  required this.text,
  required this.image,
  this.textSize = 16,
  this.textColor = Colors.black26,
  this.button,
  super.key
});