ensureFullScreenIntentPermission method
Only Android: show request permission for ACTION_MANAGE_APP_USE_FULL_SCREEN_INTENT
Implementation
@override
Future<void> ensureFullScreenIntentPermission() async {
if (!CurrentPlatform.isAndroid) return;
await methodChannel.invokeMethod<void>('ensureFullScreenIntentPermission');
}