SettingsSection constructor

const SettingsSection({
  1. required List<AbstractSettingsTile> tiles,
  2. EdgeInsetsDirectional? margin,
  3. Widget? title,
  4. Widget? bottomInfo,
  5. Key? key,
})

Implementation

const SettingsSection({
  required this.tiles,
  this.margin,
  this.title,
  this.bottomInfo,
  super.key,
});