PartyMatchmakerTicket constructor

const PartyMatchmakerTicket({
  1. required String partyId,
  2. required String ticket,
})

Implementation

const factory PartyMatchmakerTicket({
  /// Party ID.
  required String partyId,

  /// The ticket that can be used to cancel matchmaking.
  required String ticket,
}) = _PartyMatchmakerTicket;