BigQueryIODetails constructor

BigQueryIODetails({
  1. String? table,
  2. String? dataset,
  3. String? projectId,
  4. String? query,
})

Implementation

factory BigQueryIODetails({
  $core.String? table,
  $core.String? dataset,
  $core.String? projectId,
  $core.String? query,
}) {
  final $result = create();
  if (table != null) {
    $result.table = table;
  }
  if (dataset != null) {
    $result.dataset = dataset;
  }
  if (projectId != null) {
    $result.projectId = projectId;
  }
  if (query != null) {
    $result.query = query;
  }
  return $result;
}