SystemConfig constructor

SystemConfig()

Implementation

factory SystemConfig() {
  return SystemConfig._(
    pixelRadio: window.devicePixelRatio.toInt(),
    screenHeight: window.physicalSize.height.toInt(),
    screenWidth: window.physicalSize.width.toInt(),
  );
}