SettingsSection constructor

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

Implementation

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