NiceEmptyState constructor

const NiceEmptyState({
  1. Key? key,
  2. required String title,
  3. String? description,
  4. IconData? icon,
  5. Widget? illustration,
  6. NiceEmptyStateType type = NiceEmptyStateType.noData,
  7. Widget? action,
  8. Color? iconColor,
  9. double iconSize = 64,
  10. EdgeInsets? padding,
})

Implementation

const NiceEmptyState({
  super.key,
  required this.title,
  this.description,
  this.icon,
  this.illustration,
  this.type = NiceEmptyStateType.noData,
  this.action,
  this.iconColor,
  this.iconSize = 64,
  this.padding,
});