ArcaneEmptyState.offline constructor

ArcaneEmptyState.offline({
  1. String title = 'You\'re offline',
  2. String? description = 'Check your internet connection and try again.',
  3. Widget? action,
  4. Widget? secondaryAction,
  5. EmptyStateStyle style = EmptyStateStyle.centered,
  6. EmptyStateSize size = EmptyStateSize.md,
  7. Key? key,
})

Implementation

ArcaneEmptyState.offline({
  this.title = 'You\'re offline',
  this.description = 'Check your internet connection and try again.',
  this.action,
  this.secondaryAction,
  this.style = EmptyStateStyle.centered,
  this.size = EmptyStateSize.md,
  super.key,
}) : icon = ArcaneIcon.wifiOff(size: IconSize.lg);