PolicyAttachment.fromJson constructor

PolicyAttachment.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}