DescribeDeliveryChannelStatusResponse.fromJson constructor
Implementation
factory DescribeDeliveryChannelStatusResponse.fromJson(
Map<String, dynamic> json) {
return DescribeDeliveryChannelStatusResponse(
deliveryChannelsStatus: (json['DeliveryChannelsStatus'] as List?)
?.whereNotNull()
.map((e) => DeliveryChannelStatus.fromJson(e as Map<String, dynamic>))
.toList(),
);
}