performRpc method

Future<String> performRpc(
  1. PerformRpcParams params
)

Initiate an RPC call to a remote participant. @param params - RPC call parameters. @returns A future that resolves with the response payload or rejects with RpcError. @throws RpcError on failure. Details in message.

Implementation

Future<String> performRpc(PerformRpcParams params) {
  return room._rpcClientManager.performRpc(params);
}