ArcaneSettingsSection constructor

const ArcaneSettingsSection({
  1. Key? key,
  2. required String title,
  3. String? description,
  4. required List<Component> children,
  5. bool danger = false,
})

Implementation

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