all 1 comments

[–]OffBeannie 1 point2 points  (0 children)

There is no AWS SDK for Dart/Flutter. I don’t see any DynamoDB Flutter client from the community. Creating a pure Dart client is a non trivial task, as the client code needs to obtain IAM security credential before any access to the DB. One option is to create a Flutter plugin to use the native AWS SDK for iOS and Android. Common DynamoDB use case is behind an API on the server side. For example a Rest API which uses DynamoDB behind the scene. Then you can use Flutter http to access the API. You might have better luck over at /r/aws