NodeHighlight constructor

NodeHighlight({
  1. bool? chatSwitch,
  2. bool? positionSwitch,
  3. bool? telemetrySwitch,
  4. bool? iaqSwitch,
  5. String? nodeName,
})

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