DescribeInstancePatchesResult.fromJson constructor
Implementation
factory DescribeInstancePatchesResult.fromJson(Map<String, dynamic> json) {
return DescribeInstancePatchesResult(
nextToken: json['NextToken'] as String?,
patches: (json['Patches'] as List?)
?.whereNotNull()
.map((e) => PatchComplianceData.fromJson(e as Map<String, dynamic>))
.toList(),
);
}