GooglePrivacyDlpV2ProcessingLocation.fromJson constructor

GooglePrivacyDlpV2ProcessingLocation.fromJson(
  1. Map json_
)

Implementation

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