CLEmptyState constructor

const CLEmptyState({
  1. Key? key,
  2. required String title,
  3. String? message,
  4. IconData? icon,
  5. Widget? action,
  6. Color? iconColor,
  7. bool compact = false,
})

Implementation

const CLEmptyState({
  super.key,
  required this.title,
  this.message,
  this.icon,
  this.action,
  this.iconColor,
  this.compact = false,
});