ListPolicyVersionsResponse.fromJson constructor
Implementation
factory ListPolicyVersionsResponse.fromJson(Map<String, dynamic> json) {
return ListPolicyVersionsResponse(
policyVersions: (json['policyVersions'] as List?)
?.whereNotNull()
.map((e) => PolicyVersion.fromJson(e as Map<String, dynamic>))
.toList(),
);
}