BigQueryTableSpec.fromJson constructor

BigQueryTableSpec.fromJson(
  1. Map json_
)

Implementation

BigQueryTableSpec.fromJson(core.Map json_)
    : this(
        datasetId: json_.containsKey('datasetId')
            ? json_['datasetId'] as core.String
            : null,
        tableId: json_.containsKey('tableId')
            ? json_['tableId'] as core.String
            : null,
        tableProjectId: json_.containsKey('tableProjectId')
            ? json_['tableProjectId'] as core.String
            : null,
      );