reset method

void reset({
  1. required bool notify,
})

Reset all configuration to real device.

Implementation

void reset({required bool notify}) {
  resetDevicePixelRatio(notify);
  resetDisplayFeatures(notify);
  resetPadding(notify);
  resetPhysicalSize(notify);
  resetSystemGestureInsets(notify);
  resetViewInsets(notify);
  resetViewPadding(notify);
  resetGestureSettings(notify);
}