SafaehDebugAction constructor

const SafaehDebugAction({
  1. required String label,
  2. required IconData icon,
  3. required VoidCallback onTap,
  4. String? subtitle,
  5. bool enabled = true,
})

Implementation

const SafaehDebugAction({
  required this.label,
  required this.icon,
  required this.onTap,
  this.subtitle,
  this.enabled = true,
});