DebugEmptyState constructor

const DebugEmptyState({
  1. required IconData icon,
  2. required String title,
  3. String? subtitle,
  4. Key? key,
})

Creates a debug empty state.

Implementation

const DebugEmptyState({
  required this.icon,
  required this.title,
  this.subtitle,
  super.key,
});