getScreenRealHeightInPixels method
Fetches the screen's real height in pixels.
Implementation
@override
Future<int?> getScreenRealHeightInPixels() async {
final screenRealHeightInPixels =
await methodChannel.invokeMethod<int>('getScreenRealHeightInPixels');
return screenRealHeightInPixels;
}