EmptyState constructor

const EmptyState({
  1. Key? key,
  2. Widget? image,
  3. String? imagePath,
  4. required String title,
  5. required String message,
})

Implementation

const EmptyState({
  Key? key,
  this.image,
  this.imagePath,
  required this.title,
  required this.message,
}) : super(key: key);