ProcessorIOSpec_GraphOutputChannelSpec constructor

ProcessorIOSpec_GraphOutputChannelSpec({
  1. String? name,
  2. DataType? dataType,
  3. String? dataTypeUri,
})

Implementation

factory ProcessorIOSpec_GraphOutputChannelSpec({
  $core.String? name,
  DataType? dataType,
  $core.String? dataTypeUri,
}) {
  final $result = create();
  if (name != null) {
    $result.name = name;
  }
  if (dataType != null) {
    $result.dataType = dataType;
  }
  if (dataTypeUri != null) {
    $result.dataTypeUri = dataTypeUri;
  }
  return $result;
}