DescribeEffectivePolicyResponse.fromJson constructor
Implementation
factory DescribeEffectivePolicyResponse.fromJson(Map<String, dynamic> json) {
return DescribeEffectivePolicyResponse(
effectivePolicy: json['EffectivePolicy'] != null
? EffectivePolicy.fromJson(
json['EffectivePolicy'] as Map<String, dynamic>)
: null,
);
}