pixelsPerCellY property
double?
get
pixelsPerCellY
Measured pixels per cell row, when resolution is usable.
Implementation
double? get pixelsPerCellY {
final height = pixelHeight;
if (height == null || height <= 0 || rows <= 0) return null;
return height / rows;
}