double pixel(double? initialSize, [bool any = true]) { final x = (initialSize ?? 0) / _screenVariant; final v = !any && x < 0 ? 1.0 : x; return percentageSize(_detectedPixel, v); }