JetEmptyWidget constructor

const JetEmptyWidget({
  1. Key? key,
  2. Widget? icon,
  3. required String title,
  4. String? message,
  5. VoidCallback? onTap,
  6. bool showAction = false,
  7. String? actionText,
})

Implementation

const JetEmptyWidget({
  super.key,
  this.icon,
  required this.title,
  this.message,
  this.onTap,
  this.showAction = false,
  this.actionText,
});