sendMatchData method
Implementation
Future<List<rtpb.UserPresence>> sendMatchData({
required String matchId,
required Int64 opCode,
required List<int> data,
}) =>
_send(rtpb.Envelope(
matchDataSend: rtpb.MatchDataSend(
matchId: matchId,
opCode: opCode,
data: data,
)));