acceptCall property
Future<AcceptingCallResult> Function({Map<String, dynamic> ? additionalData, required MediaStream localStream})
acceptCall
final
Accepts the call request from the remote user
localStream
The MediaStream
for the local user, so the remote user will be able to receive video and/or audio.
You can get it with navigator.mediaDevices.getUserMedia(...)
Implementation
final Future<AcceptingCallResult> Function({required MediaStream localStream, Map<String, dynamic>? additionalData}) acceptCall;