BigQueryDestination.fromJson constructor

BigQueryDestination.fromJson(
  1. Map json_
)

Implementation

BigQueryDestination.fromJson(core.Map json_)
    : this(
        dataset: json_['dataset'] as core.String?,
        force: json_['force'] as core.bool?,
        partitionSpec: json_.containsKey('partitionSpec')
            ? PartitionSpec.fromJson(
                json_['partitionSpec'] as core.Map<core.String, core.dynamic>)
            : null,
        separateTablesPerAssetType:
            json_['separateTablesPerAssetType'] as core.bool?,
        table: json_['table'] as core.String?,
      );