SettingsSection constructor

const SettingsSection({
  1. Key? key,
  2. bool backgroundTheme = true,
  3. bool toolsTheme = true,
})

Create a new menu section with settings for customizing the preview.

The items can be hidden with backgroundTheme, toolsTheme parameters.

Implementation

const SettingsSection({
  Key? key,
  this.backgroundTheme = true,
  this.toolsTheme = true,
}) : super(key: key);