resetPhysicalConstraints method

void resetPhysicalConstraints(
  1. bool notify
)

Reset configuration to real device physical constraints.

Implementation

void resetPhysicalConstraints(bool notify) {
  _physicalConstraints = null;
  if (notify) {
    platformDispatcher.onMetricsChanged?.call();
  }
}