SettingsScreen constructor

SettingsScreen({
  1. Key? key,
  2. bool shrinkWrap = false,
  3. ScrollPhysics? physics,
  4. required List<SettingsSection> sections,
})

The SettingsScreen manages all of the sections added to this screen

Implementation

SettingsScreen({Key? key, this.shrinkWrap = false, this.physics, required this.sections}) : super(key: key);