EmptyState constructor

const EmptyState({
  1. dynamic key,
  2. String? title,
  3. String? subtitle,
  4. required String image,
  5. double imageSize = 150,
  6. dynamic primaryButton,
  7. dynamic secondaryButton,
})

Implementation

const EmptyState({
  super.key,
  this.title,
  this.subtitle,
  required this.image,
  this.imageSize = 150,
  this.primaryButton,
  this.secondaryButton,
});