AllocationResponse_GameServerStatusPort constructor
Implementation
factory AllocationResponse_GameServerStatusPort({
$core.String? name,
$core.int? port,
}) {
final _result = create();
if (name != null) {
_result.name = name;
}
if (port != null) {
_result.port = port;
}
return _result;
}