SettingsGroup constructor

SettingsGroup({
  1. Key? key,
  2. required String title,
  3. required List<Widget> children,
  4. TextStyle? style,
})

Implementation

SettingsGroup({
  Key? key,
  required this.title,
  required this.children,
  this.style
}) : super(key: key);