isDeviceSupportPip static method
Whether the current device supports picture-in-picture mode. @return TXVodPlayEvent 0 Picture-in-picture mode can be enabled. -101 The Android version is too low. -102 Picture-in-picture permission is disabled or the device does not support picture-in-picture mode. -103 The current interface has been destroyed.
Implementation
static Future<int?> isDeviceSupportPip() async {
return await _pluginChannel.invoke<int>('isDeviceSupportPip');
}