sendCallNegotiate method

Future<String?> sendCallNegotiate(
  1. Room room,
  2. String callId,
  3. int lifetime,
  4. String party_id,
  5. String sdp, {
  6. String type = 'offer',
  7. String version = voipProtoVersion,
  8. String? txid,
  9. CallCapabilities? capabilities,
  10. SDPStreamMetadata? metadata,
})

When local audio/video tracks are added/deleted or hold/unhold, need to createOffer and renegotiation. callId is a unique identifier for the call. version is the version of the VoIP specification this message adheres to. This specification is version 1. party_id The party ID for call, Can be set to client.deviceId.

Implementation

Future<String?> sendCallNegotiate(
    Room room, String callId, int lifetime, String party_id, String sdp,
    {String type = 'offer',
    String version = voipProtoVersion,
    String? txid,
    CallCapabilities? capabilities,
    SDPStreamMetadata? metadata}) async {
  final content = {
    'call_id': callId,
    'party_id': party_id,
    if (groupCallId != null) 'conf_id': groupCallId!,
    'version': version,
    'lifetime': lifetime,
    'description': {'sdp': sdp, 'type': type},
    if (capabilities != null) 'capabilities': capabilities.toJson(),
    if (metadata != null) sdpStreamMetadataKey: metadata.toJson(),
  };
  return await _sendContent(
    room,
    isGroupCall
        ? EventTypes.GroupCallMemberNegotiate
        : EventTypes.CallNegotiate,
    content,
    txid: txid,
  );
}