GetConfigurationSetEventDestinationsResponse.fromJson constructor
Implementation
factory GetConfigurationSetEventDestinationsResponse.fromJson(
Map<String, dynamic> json) {
return GetConfigurationSetEventDestinationsResponse(
eventDestinations: (json['EventDestinations'] as List?)
?.whereNotNull()
.map((e) => EventDestination.fromJson(e as Map<String, dynamic>))
.toList(),
);
}