MatchmakerUser constructor

const MatchmakerUser({
  1. required UserPresence presence,
  2. required String partyId,
  3. required Map<String, String> stringProperties,
  4. required Map<String, double> numericProperties,
})

Implementation

const factory MatchmakerUser({
  /// User info.
  required UserPresence presence,

  /// Party identifier, if this user was matched as a party member.
  required String partyId,

  /// String properties.
  required Map<String, String> stringProperties,

  /// Numeric properties.
  required Map<String, double> numericProperties,
}) = _MatchmakerUser;