stopStreaming static method
Stop streaming for the givin entertainmentConfiguration
.
Implementation
static Future<bool> stopStreaming(
Bridge bridge,
String entertainmentConfigurationId,
DtlsData dtlsData, {
String Function(String ciphertext)? decrypter,
}) async {
await dtlsData.tryDisconnect();
return await _stopStreaming(
bridge,
entertainmentConfigurationId,
decrypter: decrypter,
);
}