StrategyChain constructor

const StrategyChain({
  1. required double base,
  2. List<ScaledEntry> entries = const [],
  3. bool ignoreMultiWindows = false,
  4. bool applyAspectRatio = false,
  5. double? customSensitivityK,
  6. required StrategyFormula formula,
  7. CalcType calcType = CalcType.auto,
})

Implementation

const StrategyChain({
  required this.base,
  this.entries = const [],
  this.ignoreMultiWindows = false,
  this.applyAspectRatio = false,
  this.customSensitivityK,
  required this.formula,
  this.calcType = CalcType.auto,
});