DbLensEmptyState constructor

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

Implementation

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