WildnessProperties constructor

const WildnessProperties({
  1. Brightness? forzeThemeMode,
  2. Configuration components = const Configuration(),
  3. Configuration fundations = const Configuration(),
  4. ScrollPhysics physics = const ClampingScrollPhysics(),
  5. double minScaleFactor = 0.5,
  6. double maxScaleFactor = 1.2,
})

Creates a wildnessProperties tha's used to configure wildnessUI

The forzeThemewildnessMode will be used to set the theme, if you dont pass it, the system default setting is used fallback is light

Implementation

const WildnessProperties({
  this.forzeThemeMode,
  Configuration components = const Configuration(),
  Configuration fundations = const Configuration(),
  this.physics = const ClampingScrollPhysics(),
  this.minScaleFactor = 0.5,
  this.maxScaleFactor = 1.2,
})  : _fundations = fundations,
      _components = components;