viewConfigurationTestValue property Null safety

void viewConfigurationTestValue=(ViewConfiguration? value)

Hide the real view configuration and report the provided value instead.

Implementation

set viewConfigurationTestValue(ui.ViewConfiguration? value) { // ignore: avoid_setters_without_getters
  _viewConfiguration = value;
  onMetricsChanged?.call();
}