addMatchmaker method
Implementation
Future<rtpb.MatchmakerTicket> addMatchmaker({
required int minCount,
int? maxCount,
String? query,
Map<String, double>? numericProperties,
Map<String, String>? stringProperties,
}) {
assert(minCount >= 2);
assert(maxCount == null || maxCount >= minCount);
return _send(rtpb.Envelope(
matchmakerAdd: rtpb.MatchmakerAdd(
maxCount: maxCount,
minCount: minCount,
numericProperties: numericProperties,
stringProperties: stringProperties,
query: query,
)));
}