SettingsSectionProps constructor

const SettingsSectionProps({
  1. required String title,
  2. String? description,
  3. required List<Widget> children,
  4. bool danger = false,
})

Implementation

const SettingsSectionProps({
  required this.title,
  this.description,
  required this.children,
  this.danger = false,
});