GooglePrivacyDlpV2Export.fromJson constructor

GooglePrivacyDlpV2Export.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2Export.fromJson(core.Map json_)
    : this(
        profileTable: json_.containsKey('profileTable')
            ? GooglePrivacyDlpV2BigQueryTable.fromJson(
                json_['profileTable'] as core.Map<core.String, core.dynamic>)
            : null,
      );