playEncrypted method

Future<void> playEncrypted(
  1. String url, {
  2. required String decryptionKey,
})

Play an encrypted video with the given decryptionKey.

Implementation

Future<void> playEncrypted(String url, {required String decryptionKey}) =>
    _invoke('playEncrypted', {'url': url, 'decryptionKey': decryptionKey});