SettingGroup constructor

const SettingGroup({
  1. required Setting setting,
  2. required Widget child,
  3. Color? backgroundColor,
  4. VoidCallback? onTap,
  5. Key? key,
})

Implementation

const SettingGroup({
  required this.setting,
  required this.child,
  this.backgroundColor,
  this.onTap,
  super.key,
});