FUIEmptyState constructor

const FUIEmptyState({
  1. Key? key,
  2. required String title,
  3. String? message,
  4. IconData? icon,
  5. String? actionLabel,
  6. VoidCallback? onAction,
})

Implementation

const FUIEmptyState({
  super.key,
  required this.title,
  this.message,
  this.icon,
  this.actionLabel,
  this.onAction,
});