devicePixelRatio property

double? get devicePixelRatio

Device pixel ratio of the image or null if not set.

Implementation

double? get devicePixelRatio => _devicePixelRatio[this] as double?;
set devicePixelRatio (double? value)

Implementation

set devicePixelRatio(double? value) {
  _devicePixelRatio[this] = value;
}