ArcaneEmptyState constructor

const ArcaneEmptyState({
  1. required String title,
  2. Widget? icon,
  3. String? description,
  4. Widget? action,
  5. Widget? 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,
});