GoogleCloudDialogflowV2InitializeEncryptionSpecRequest.fromJson constructor

GoogleCloudDialogflowV2InitializeEncryptionSpecRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2InitializeEncryptionSpecRequest.fromJson(
  core.Map json_,
) : this(
      encryptionSpec:
          json_.containsKey('encryptionSpec')
              ? GoogleCloudDialogflowV2EncryptionSpec.fromJson(
                json_['encryptionSpec']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );