SettingsPage constructor

const SettingsPage({
  1. required List<Control> settings,
  2. Widget controlWrapper(
    1. Widget child,
    2. Control setting, {
    3. bool partOfGroup,
    })?,
  3. Widget groupWrapper(
    1. Widget child,
    2. Control setting
    )?,
  4. Key? key,
})

Implementation

const SettingsPage({
  required this.settings,
  this.controlWrapper,
  this.groupWrapper,
  super.key,
});