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