BaseEmpty constructor

const BaseEmpty({
  1. Key? key,
  2. String? title,
  3. List<BaseEmptyAction> actions = const [],
  4. String? description,
  5. String? icon,
  6. double iconSize = 16,
  7. double titleSize = 18,
  8. double strokeWidth = 3,
  9. EdgeInsets padding = const EdgeInsets.all(16),
  10. Color? overlayColor,
  11. Color? background,
  12. bool withoutBorder = false,
  13. VoidCallback? onTap,
})

Implementation

const BaseEmpty({
  super.key,
  this.title,
  this.actions = const [],
  this.description,
  this.icon,
  this.iconSize = 16,
  this.titleSize = 18,
  this.strokeWidth = 3,
  this.padding = const EdgeInsets.all(16),
  this.overlayColor,
  this.background,
  this.withoutBorder = false,
  this.onTap,
});