DemoFluSettings constructor

DemoFluSettings({
  1. required Color widgetBackground,
  2. required double? widthWeight,
  3. required double? heightWeight,
  4. required bool defaultConsoleEnabled,
  5. required bool defaultResizable,
  6. required Size? defaultMaxSize,
})

Implementation

DemoFluSettings(
    {required Color widgetBackground,
    required double? widthWeight,
    required double? heightWeight,
    required bool defaultConsoleEnabled,
    required bool defaultResizable,
    required Size? defaultMaxSize})
    : this._defaultConsoleEnabled = defaultConsoleEnabled,
      this._defaultResizable = defaultResizable,
      this._defaultMaxSize = defaultMaxSize,
      this._widgetBackground = widgetBackground,
      this._widthWeight = widthWeight ?? 1,
      this._heightWeight = heightWeight ?? 1;