CacheKey constructor

CacheKey({
  1. required double baseValue,
  2. required bool isLandscape,
  3. required bool ignoreMultiWindows,
  4. required CalcType calcType,
  5. required DpQualifier qualifier,
  6. required Inverter inverter,
  7. required bool applyAspectRatio,
  8. required ValueType valueType,
  9. double? customSensitivityK,
})

Implementation

CacheKey({
  required this.baseValue,
  required this.isLandscape,
  required this.ignoreMultiWindows,
  required this.calcType,
  required this.qualifier,
  required this.inverter,
  required this.applyAspectRatio,
  required this.valueType,
  this.customSensitivityK,
});