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