DescribeUserPoolResponse.fromJson constructor
Implementation
factory DescribeUserPoolResponse.fromJson(Map<String, dynamic> json) {
return DescribeUserPoolResponse(
userPool: json['UserPool'] != null
? UserPoolType.fromJson(json['UserPool'] as Map<String, dynamic>)
: null,
);
}