EmptyStateWidget constructor

const EmptyStateWidget({
  1. Key? key,
  2. required String message,
  3. String? title,
  4. IconData? icon,
  5. Widget? illustration,
  6. Widget? action,
  7. String? actionLabel,
  8. VoidCallback? onActionPressed,
})

Implementation

const EmptyStateWidget({
  super.key,
  required this.message,
  this.title,
  this.icon,
  this.illustration,
  this.action,
  this.actionLabel,
  this.onActionPressed,
});