ListTopicSubscriptionsResponse.fromJson constructor

ListTopicSubscriptionsResponse.fromJson(
  1. 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(),
    );