TabularDataSource constructor

TabularDataSource({
  1. TabularDataSourceType? type,
  2. 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;
}