GoogleCloudAssuredworkloadsV1ListViolationsResponse.fromJson constructor
GoogleCloudAssuredworkloadsV1ListViolationsResponse.fromJson(
- Map json_
Implementation
GoogleCloudAssuredworkloadsV1ListViolationsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
violations: json_.containsKey('violations')
? (json_['violations'] as core.List)
.map((value) =>
GoogleCloudAssuredworkloadsV1Violation.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);