TabularDataSource constructor
- TabularDataSourceType? type,
- String? pipelineId,
Implementation
factory TabularDataSource({
TabularDataSourceType? type,
$core.String? pipelineId,
}) {
final $result = create();
if (type != null) {
$result.type = type;
}
if (pipelineId != null) {
$result.pipelineId = pipelineId;
}
return $result;
}