DescribeAuthorizerResponse.fromJson constructor

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

Implementation

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