isAutoEnterSupported method
Check if Picture in Picture can auto enter.
Returns Whether Picture in Picture can auto enter.
Implementation
@override
Future<bool> isAutoEnterSupported() async {
final result =
await methodChannel.invokeMethod<bool>('isAutoEnterSupported', null);
return result ?? false;
}