ArcaneEmptyState constructor

const ArcaneEmptyState({
  1. required String title,
  2. Component? icon,
  3. String? description,
  4. Component? action,
  5. Component? secondaryAction,
  6. EmptyStateStyle style = EmptyStateStyle.centered,
  7. EmptyStateSize size = EmptyStateSize.md,
  8. Key? key,
})

Implementation

const ArcaneEmptyState({
  required this.title,
  this.icon,
  this.description,
  this.action,
  this.secondaryAction,
  this.style = EmptyStateStyle.centered,
  this.size = EmptyStateSize.md,
  super.key,
});