SettingsList constructor

const SettingsList({
  1. Key? key,
  2. List<AbstractSection>? sections,
  3. Color? backgroundColor,
  4. ScrollPhysics? physics,
  5. bool shrinkWrap = false,
  6. Color? lightBackgroundColor,
  7. Color? darkBackgroundColor,
  8. EdgeInsetsGeometry? contentPadding,
})

Implementation

const SettingsList({
  Key? key,
  this.sections,
  this.backgroundColor,
  this.physics,
  this.shrinkWrap = false,
  this.lightBackgroundColor,
  this.darkBackgroundColor,
  this.contentPadding,
}) : super(key: key);