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