PutRegistryPolicyResponse.fromJson constructor

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

Implementation

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