SettingsList constructor

const SettingsList({
  1. required List<AbstractSettingsSection> sections,
  2. bool shrinkWrap = false,
  3. ScrollPhysics? physics,
  4. DevicePlatform? platform,
  5. SettingsThemeData? lightTheme,
  6. SettingsThemeData? darkTheme,
  7. Brightness? brightness,
  8. EdgeInsetsGeometry? contentPadding,
  9. ApplicationType applicationType = ApplicationType.material,
  10. Key? key,
})

Implementation

const SettingsList({
  required this.sections,
  this.shrinkWrap = false,
  this.physics,
  this.platform,
  this.lightTheme,
  this.darkTheme,
  this.brightness,
  this.contentPadding,
  this.applicationType = ApplicationType.material,
  Key? key,
}) : super(key: key);