ListTopicSubscriptionsResponse.fromJson constructor
ListTopicSubscriptionsResponse.fromJson(
- Map json_
Implementation
ListTopicSubscriptionsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
subscriptions: (json_['subscriptions'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);