setDeviceScaleFactor method

void setDeviceScaleFactor(
  1. double deviceScaleFactor
)

Implementation

void setDeviceScaleFactor(double deviceScaleFactor) {
  assert(deviceScaleFactor > 0);
  _deviceScaleFactor = deviceScaleFactor;
}