GooglePrivacyDlpV2InfoTypeTransformations.fromJson constructor

GooglePrivacyDlpV2InfoTypeTransformations.fromJson(
  1. Map json_
)

Implementation

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