ListLogSubscriptionsResult.fromJson constructor
Implementation
factory ListLogSubscriptionsResult.fromJson(Map<String, dynamic> json) {
return ListLogSubscriptionsResult(
logSubscriptions: (json['LogSubscriptions'] as List?)
?.whereNotNull()
.map((e) => LogSubscription.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['NextToken'] as String?,
);
}