Fetches the screen's PPI (Pixels Per Inch).
@override Future<double?> getScreenPPI() async { final screenPPI = await methodChannel.invokeMethod<double>('getScreenPPI'); return screenPPI; }