SystemSection constructor

const SystemSection({
  1. Key? key,
  2. bool locale = true,
  3. bool theme = true,
})

Create a new menu section with simulated systel properties.

The items can be hidden with locale, theme parameters.

Implementation

const SystemSection({
  Key? key,
  this.locale = true,
  this.theme = true,
}) : super(key: key);