EmptyState constructor

const EmptyState({
  1. Key? key,
  2. required String glyph,
  3. required String headline,
  4. String? body,
  5. Widget? action,
})

Implementation

const EmptyState({
  super.key,
  required this.glyph,
  required this.headline,
  this.body,
  this.action,
});