NiceThemeDesigner constructor

const NiceThemeDesigner({
  1. Key? key,
  2. required NiceThemeData value,
  3. void onChange(
    1. NiceThemeData theme
    )?,
  4. void onSave(
    1. NiceThemeData theme
    )?,
  5. bool showExport = true,
  6. bool showImport = true,
})

Implementation

const NiceThemeDesigner({
  super.key,
  required this.value,
  this.onChange,
  this.onSave,
  this.showExport = true,
  this.showImport = true,
});