GooglePrivacyDlpV2KMapEstimationConfig.fromJson constructor

GooglePrivacyDlpV2KMapEstimationConfig.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2KMapEstimationConfig.fromJson(core.Map json_)
    : this(
        auxiliaryTables: (json_['auxiliaryTables'] as core.List?)
            ?.map((value) => GooglePrivacyDlpV2AuxiliaryTable.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        quasiIds: (json_['quasiIds'] as core.List?)
            ?.map((value) => GooglePrivacyDlpV2TaggedField.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        regionCode: json_['regionCode'] as core.String?,
      );