UpdateAuthorizerResponse.fromJson constructor
Implementation
factory UpdateAuthorizerResponse.fromJson(Map<String, dynamic> json) {
return UpdateAuthorizerResponse(
authorizerArn: json['authorizerArn'] as String?,
authorizerName: json['authorizerName'] as String?,
);
}