ListTopicRuleDestinationsResponse.fromJson constructor
Implementation
factory ListTopicRuleDestinationsResponse.fromJson(
Map<String, dynamic> json) {
return ListTopicRuleDestinationsResponse(
destinationSummaries: (json['destinationSummaries'] as List?)
?.whereNotNull()
.map((e) =>
TopicRuleDestinationSummary.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['nextToken'] as String?,
);
}