Dart wrapper for Tindie Order API
Note: Never publish your Tindie API Key! It is a secret and should remain one!
- Get all orders (last 20)
- Get all shipped orders (last 20)
- Get all unshipped orders (last 20)
flutter pub add darttindie
Instantiate Tindie
object with API key and username
final tindie = Tindie(
apikey: 'api key',
username: 'username',
);
Get last 30 orders
tindie.getOrders();
Get last 30 unshipped orders
tindie.getOrders(shipped: false);