GetAnomalySubscriptionsResponse.fromJson constructor
Implementation
factory GetAnomalySubscriptionsResponse.fromJson(Map<String, dynamic> json) {
return GetAnomalySubscriptionsResponse(
anomalySubscriptions: (json['AnomalySubscriptions'] as List)
.whereNotNull()
.map((e) => AnomalySubscription.fromJson(e as Map<String, dynamic>))
.toList(),
nextPageToken: json['NextPageToken'] as String?,
);
}