KinEmptyState constructor

const KinEmptyState({
  1. Key? key,
  2. IconData? icon,
  3. Widget? iconWidget,
  4. required String title,
  5. String? subtitle,
  6. String? actionLabel,
  7. VoidCallback? onAction,
  8. bool compact = false,
})

Implementation

const KinEmptyState({
  super.key,
  this.icon,
  this.iconWidget,
  required this.title,
  this.subtitle,
  this.actionLabel,
  this.onAction,
  this.compact = false,
});