GooglePrivacyDlpV2ImageTransformations.fromJson constructor

GooglePrivacyDlpV2ImageTransformations.fromJson(
  1. Map json_
)

Implementation

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