devicePixelRatio property

double? devicePixelRatio

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

Implementation

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

Implementation

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