SettingsSection constructor

const SettingsSection(
  1. {Key? key,
  2. String? title,
  3. required List<Widget> children}
)

Implementation

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