subscriptionInitiatedFromServer method
Implementation
void subscriptionInitiatedFromServer(
RemoteParticipant remoteParticipant, String streamId) {
final sdpConstraints = <String, String>{
'offerToReceiveAudio': 'true',
'offerToReceiveVideo': 'true',
};
session.createAnswerForSubscribing(
remoteParticipant, streamId, sdpConstraints);
}