EmptyState constructor

const EmptyState({
  1. String? title,
  2. String? message,
  3. Component? icon,
  4. Component? action,
  5. Key? key,
})

Implementation

const EmptyState({
  this.title,
  this.message,
  this.icon,
  this.action,
  super.key,
});