GooglePrivacyDlpV2BigQueryTable.fromJson constructor

GooglePrivacyDlpV2BigQueryTable.fromJson(
  1. Map json_
)

Implementation

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