ListLinkedCustomChannelsResponse.fromJson constructor
ListLinkedCustomChannelsResponse.fromJson(
- Map json_
Implementation
ListLinkedCustomChannelsResponse.fromJson(core.Map json_)
: this(
customChannels: json_.containsKey('customChannels')
? (json_['customChannels'] as core.List)
.map((value) => CustomChannel.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);