DescribeDeliveryChannelStatusResponse.fromJson constructor

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

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