DescribeEffectivePolicyResponse.fromJson constructor

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

Implementation

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