NiceSettingsPage constructor

const NiceSettingsPage({
  1. Key? key,
  2. String? title,
  3. required List<NiceSettingsSection> sections,
  4. Widget? header,
  5. Widget? footer,
  6. bool showSearch = false,
  7. void onSearch(
    1. String query
    )?,
})

Implementation

const NiceSettingsPage({
  super.key,
  this.title,
  required this.sections,
  this.header,
  this.footer,
  this.showSearch = false,
  this.onSearch,
});