DescribeEventSubscriptionsResponse.fromJson constructor
Implementation
factory DescribeEventSubscriptionsResponse.fromJson(
Map<String, dynamic> json) {
return DescribeEventSubscriptionsResponse(
eventSubscriptionsList: (json['EventSubscriptionsList'] as List?)
?.whereNotNull()
.map((e) => EventSubscription.fromJson(e as Map<String, dynamic>))
.toList(),
marker: json['Marker'] as String?,
);
}