GooglePrivacyDlpV2ProcessingLocation.fromJson constructor

GooglePrivacyDlpV2ProcessingLocation.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2ProcessingLocation.fromJson(core.Map json_)
  : this(
      documentFallbackLocation: json_.containsKey('documentFallbackLocation')
          ? GooglePrivacyDlpV2DocumentFallbackLocation.fromJson(
              json_['documentFallbackLocation']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      imageFallbackLocation: json_.containsKey('imageFallbackLocation')
          ? GooglePrivacyDlpV2ImageFallbackLocation.fromJson(
              json_['imageFallbackLocation']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );