DevLensEmptyState constructor

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

Implementation

const DevLensEmptyState({
  super.key,
  required this.icon,
  required this.title,
  required this.message,
});