SafaehEmptyState constructor

const SafaehEmptyState({
  1. Key? key,
  2. required IconData icon,
  3. required String title,
  4. String? subtitle,
  5. String? actionLabel,
  6. VoidCallback? onAction,
  7. IconData actionIcon = Icons.add,
  8. double iconSize = 64,
})

Implementation

const SafaehEmptyState({
  super.key,
  required this.icon,
  required this.title,
  this.subtitle,
  this.actionLabel,
  this.onAction,
  this.actionIcon = Icons.add,
  this.iconSize = 64,
});