PolicyAttachment.fromJson constructor
Implementation
factory PolicyAttachment.fromJson(Map<String, dynamic> json) {
return PolicyAttachment(
objectIdentifier: json['ObjectIdentifier'] as String?,
policyId: json['PolicyId'] as String?,
policyType: json['PolicyType'] as String?,
);
}