SafaehDebugSection constructor

const SafaehDebugSection({
  1. required String title,
  2. required IconData icon,
  3. required List<Widget> children,
  4. String? subtitle,
  5. bool initiallyExpanded = false,
})

Implementation

const SafaehDebugSection({
  required this.title,
  required this.icon,
  required this.children,
  this.subtitle,
  this.initiallyExpanded = false,
});