EmptyStateProps constructor

const EmptyStateProps({
  1. required String title,
  2. Component? icon,
  3. String? emoji,
  4. String? description,
  5. Component? action,
  6. Component? secondaryAction,
  7. EmptyStateStyleVariant style = EmptyStateStyleVariant.centered,
  8. EmptyStateSizeVariant size = EmptyStateSizeVariant.md,
})

Implementation

const EmptyStateProps({
  required this.title,
  this.icon,
  this.emoji,
  this.description,
  this.action,
  this.secondaryAction,
  this.style = EmptyStateStyleVariant.centered,
  this.size = EmptyStateSizeVariant.md,
});