MatchmakerMatched_MatchmakerUser constructor
MatchmakerMatched_MatchmakerUser({})
Implementation
factory MatchmakerMatched_MatchmakerUser({
UserPresence? presence,
$core.String? partyId,
$core.Map<$core.String, $core.String>? stringProperties,
$core.Map<$core.String, $core.double>? numericProperties,
}) {
final _result = create();
if (presence != null) {
_result.presence = presence;
}
if (partyId != null) {
_result.partyId = partyId;
}
if (stringProperties != null) {
_result.stringProperties.addAll(stringProperties);
}
if (numericProperties != null) {
_result.numericProperties.addAll(numericProperties);
}
return _result;
}