joinMatch method

Future<Match> joinMatch(
  1. String matchId, {
  2. String? token,
})

Implementation

Future<rtpb.Match> joinMatch(
  String matchId, {
  String? token,
}) =>
    _send<rtpb.Match>(rtpb.Envelope(
        matchJoin: rtpb.MatchJoin(matchId: matchId, token: token)));