NiceSettingsSection constructor

const NiceSettingsSection({
  1. String? title,
  2. String? description,
  3. IconData? icon,
  4. required List<NiceSettingsItem> items,
  5. bool collapsible = false,
  6. bool initiallyExpanded = true,
})

Implementation

const NiceSettingsSection({
  this.title,
  this.description,
  this.icon,
  required this.items,
  this.collapsible = false,
  this.initiallyExpanded = true,
});