Node_InputEdge constructor

Node_InputEdge({
  1. String? parentNode,
  2. String? parentOutputChannel,
  3. String? connectedInputChannel,
})

Implementation

factory Node_InputEdge({
  $core.String? parentNode,
  $core.String? parentOutputChannel,
  $core.String? connectedInputChannel,
}) {
  final $result = create();
  if (parentNode != null) {
    $result.parentNode = parentNode;
  }
  if (parentOutputChannel != null) {
    $result.parentOutputChannel = parentOutputChannel;
  }
  if (connectedInputChannel != null) {
    $result.connectedInputChannel = connectedInputChannel;
  }
  return $result;
}