leaveMatch method

Future<void> leaveMatch(
  1. String matchId
)

Implementation

Future<void> leaveMatch(String matchId) async {
  await _send<void>(
    rtpb.Envelope(matchLeave: rtpb.MatchLeave(matchId: matchId)),
  );
}