BigQueryOptions.fromJson constructor

BigQueryOptions.fromJson(
  1. Map json_
)

Implementation

BigQueryOptions.fromJson(core.Map json_)
  : this(
      usePartitionedTables: json_['usePartitionedTables'] as core.bool?,
      usesTimestampColumnPartitioning:
          json_['usesTimestampColumnPartitioning'] as core.bool?,
    );