NiceAdminSettings constructor

const NiceAdminSettings({
  1. Key? key,
  2. required List<NiceSettingsSection> sections,
  3. void onChanged(
    1. String key,
    2. dynamic value
    )?,
  4. void onAction(
    1. String key
    )?,
  5. String title = 'Settings',
})

Implementation

const NiceAdminSettings({
  super.key,
  required this.sections,
  this.onChanged,
  this.onAction,
  this.title = 'Settings',
});