inchesToPx method

double inchesToPx(
  1. double inches
)

Converts inches to pixels

Implementation

double inchesToPx(double inches) {
  return inches * inchesToLogicalPixelsRatio;
}