DescribePolicyResponse.fromJson constructor

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

Implementation

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