GooglePrivacyDlpV2TableOptions.fromJson constructor

GooglePrivacyDlpV2TableOptions.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2TableOptions.fromJson(core.Map json_)
    : this(
        identifyingFields: json_.containsKey('identifyingFields')
            ? (json_['identifyingFields'] as core.List)
                .map((value) => GooglePrivacyDlpV2FieldId.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );