physicalSizeTestValue property Null safety

void physicalSizeTestValue=(Size physicalSizeTestValue)

Hides the real physical size and reports the given physicalSizeTestValue instead.

Implementation

set physicalSizeTestValue (ui.Size physicalSizeTestValue) { // ignore: avoid_setters_without_getters
  _physicalSizeTestValue = physicalSizeTestValue;
  onMetricsChanged?.call();
}