ListNotificationChannelsResponse.fromJson constructor
ListNotificationChannelsResponse.fromJson(
- Map json_
Implementation
ListNotificationChannelsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
notificationChannels:
(json_['notificationChannels'] as core.List?)
?.map(
(value) => NotificationChannel.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
totalSize: json_['totalSize'] as core.int?,
);