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