PutPolicyResponse.fromJson constructor
Implementation
factory PutPolicyResponse.fromJson(Map<String, dynamic> json) {
return PutPolicyResponse(
policy: json['Policy'] != null
? Policy.fromJson(json['Policy'] as Map<String, dynamic>)
: null,
policyArn: json['PolicyArn'] as String?,
);
}