SettingsContainer constructor

const SettingsContainer({
  1. Key? key,
  2. required List<Widget> children,
  3. bool allowScrollInternally = false,
  4. double leftPadding = 0.0,
})

Implementation

const SettingsContainer({
  super.key,
  required this.children,
  this.allowScrollInternally = false,
  this.leftPadding = 0.0,
});