DeleteRegistryPolicyResponse.fromJson constructor

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

Implementation

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