removeMatchmaker method

Future<void> removeMatchmaker(
  1. String ticket
)

Implementation

Future<void> removeMatchmaker(String ticket) async {
  await _send(
    rtpb.Envelope(matchmakerRemove: rtpb.MatchmakerRemove(ticket: ticket)),
  );
}