GooglePrivacyDlpV2BatchContentItem.fromJson constructor

GooglePrivacyDlpV2BatchContentItem.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2BatchContentItem.fromJson(core.Map json_)
  : this(
      stringValueBatch: json_.containsKey('stringValueBatch')
          ? GooglePrivacyDlpV2StringValueBatch.fromJson(
              json_['stringValueBatch']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );