SettingsSection constructor

const SettingsSection({
  1. Key? key,
  2. required String title,
  3. required List<Widget> children,
})

Implementation

const SettingsSection({
  super.key,
  required this.title,
  required this.children,
});