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