ListLoggingConfigurationsResponse.fromJson constructor
Implementation
factory ListLoggingConfigurationsResponse.fromJson(
Map<String, dynamic> json) {
return ListLoggingConfigurationsResponse(
loggingConfigurations: (json['LoggingConfigurations'] as List?)
?.whereNotNull()
.map((e) => LoggingConfiguration.fromJson(e as Map<String, dynamic>))
.toList(),
nextMarker: json['NextMarker'] as String?,
);
}