ListLoggingConfigurationsResponse.fromJson constructor

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

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?,
  );
}