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