SettingsSectionIos constructor

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

Implementation

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