SettingsGroup constructor

SettingsGroup(
  1. {@required String title,
  2. String subtitle,
  3. @required List<Widget> children}
)

Implementation

SettingsGroup({
  @required this.title,
  this.subtitle,
  @required this.children,
});