Closed kmcgill88 closed 4 years ago
Thanks for the quick fix on the last issue! https://github.com/awslabs/aws-lambda-dart-runtime/issues/5
I found another one. AwsApiGatewayEvent is missing body in the event of a POST or PUT. Looks like your test json you only tested for a GET. I'd assume this could be null in the event of a GET and a string otherwise.
body
POST
PUT
GET
null
🎉 Thanks @katallaxie!
Thanks for the quick fix on the last issue! https://github.com/awslabs/aws-lambda-dart-runtime/issues/5
I found another one. AwsApiGatewayEvent is missing
body
in the event of aPOST
orPUT
. Looks like your test json you only tested for aGET
. I'd assume this could benull
in the event of aGET
and a string otherwise.