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