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