GoogleCloudChannelV1ListSubscribersResponse.fromJson constructor
GoogleCloudChannelV1ListSubscribersResponse.fromJson(
- Map json_
Implementation
GoogleCloudChannelV1ListSubscribersResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
serviceAccounts: json_.containsKey('serviceAccounts')
? (json_['serviceAccounts'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
topic:
json_.containsKey('topic') ? json_['topic'] as core.String : null,
);