SettingsList constructor

const SettingsList({
  1. required List<AbstractSettingsSection> sections,
  2. bool shrinkWrap = false,
  3. double? maxWidth,
  4. ScrollPhysics? physics,
  5. EdgeInsetsGeometry? contentPadding,
  6. Key? key,
})

Implementation

const SettingsList({
  required this.sections,
  this.shrinkWrap = false,
  this.maxWidth,
  this.physics,
  this.contentPadding,
  super.key,
});