CreatePolicyVersionResponse.fromJson constructor
Implementation
factory CreatePolicyVersionResponse.fromJson(Map<String, dynamic> json) {
return CreatePolicyVersionResponse(
isDefaultVersion: json['isDefaultVersion'] as bool?,
policyArn: json['policyArn'] as String?,
policyDocument: json['policyDocument'] as String?,
policyVersionId: json['policyVersionId'] as String?,
);
}