NodeHighlight constructor
NodeHighlight({})
Implementation
factory NodeHighlight({
$core.bool? chatSwitch,
$core.bool? positionSwitch,
$core.bool? telemetrySwitch,
$core.bool? iaqSwitch,
$core.String? nodeName,
}) {
final result = create();
if (chatSwitch != null) result.chatSwitch = chatSwitch;
if (positionSwitch != null) result.positionSwitch = positionSwitch;
if (telemetrySwitch != null) result.telemetrySwitch = telemetrySwitch;
if (iaqSwitch != null) result.iaqSwitch = iaqSwitch;
if (nodeName != null) result.nodeName = nodeName;
return result;
}