SafaehDebugSectionCard constructor

const SafaehDebugSectionCard({
  1. Key? key,
  2. required IconData icon,
  3. required String title,
  4. required Widget child,
  5. String? subtitle,
  6. bool initiallyExpanded = false,
})

Implementation

const SafaehDebugSectionCard({
  super.key,
  required this.icon,
  required this.title,
  required this.child,
  this.subtitle,
  this.initiallyExpanded = false,
});