createNewCall method

CallSession createNewCall(
  1. CallOptions opts
)

Implementation

CallSession createNewCall(CallOptions opts) {
  final call = CallSession(opts);
  calls[opts.callId] = call;
  return call;
}