sendAnswer method

Future<SendAnswerResponse> sendAnswer(
  1. ClientContext? ctx,
  2. SendAnswerRequest request
)

answer is sent by the client to the SFU after receiving a subscriber_offer.

Implementation

$async.Future<SendAnswerResponse> sendAnswer(
        $pb.ClientContext? ctx, SendAnswerRequest request) =>
    _client.invoke<SendAnswerResponse>(
        ctx, 'SignalServer', 'SendAnswer', request, SendAnswerResponse());