PutLoggingConfigurationResponse.fromJson constructor

PutLoggingConfigurationResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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