BigQueryTableSpec.fromJson constructor

BigQueryTableSpec.fromJson(
  1. Map json_
)

Implementation

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