UIProEmptyState constructor

const UIProEmptyState({
  1. Key? key,
  2. IconData? icon,
  3. String? title,
  4. String? description,
  5. String? actionText,
  6. VoidCallback? onAction,
  7. Widget? image,
})

Creates an empty state widget.

Implementation

const UIProEmptyState({
  super.key,
  this.icon,
  this.title,
  this.description,
  this.actionText,
  this.onAction,
  this.image,
});