GetLoggingConfigurationResponse.fromJson constructor
Implementation
factory GetLoggingConfigurationResponse.fromJson(Map<String, dynamic> json) {
return GetLoggingConfigurationResponse(
loggingConfiguration: json['LoggingConfiguration'] != null
? LoggingConfiguration.fromJson(
json['LoggingConfiguration'] as Map<String, dynamic>)
: null,
);
}