GoogleCloudDialogflowV2LoggingConfig.fromJson constructor

GoogleCloudDialogflowV2LoggingConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2LoggingConfig.fromJson(core.Map json_)
    : this(
        enableStackdriverLogging:
            json_.containsKey('enableStackdriverLogging')
                ? json_['enableStackdriverLogging'] as core.bool
                : null,
      );