GetRegistryPolicyResponse.fromJson constructor

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

Implementation

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