GetRegistryPolicyResponse.fromJson constructor
Implementation
factory GetRegistryPolicyResponse.fromJson(Map<String, dynamic> json) {
return GetRegistryPolicyResponse(
policyText: json['policyText'] as String?,
registryId: json['registryId'] as String?,
);
}