CreatePolicyVersionResponse.fromJson constructor

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

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?,
  );
}