forCorrectPixelRatio method

Uint8List forCorrectPixelRatio(
  1. double devicePixelRatio
)

Implementation

Uint8List forCorrectPixelRatio(double devicePixelRatio) {
  // It just looks better when using images a step higher.
  return fromMultiplier(devicePixelRatio.toInt() + 1);
}