MatchmakerMatched_MatchmakerUser constructor

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

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;
}