vendure 0.2.0
vendure: ^0.2.0 copied to clipboard
Flutter SDK for Vendure Open Source Headless Commerce Framework.
example/vendure_example.dart
import 'package:vendure/vendure.dart';
void main() async {
final vendure = Vendure('http://localhost:3000/shop-api',
token:
'3e09931820c8a9542be087da474bd13f7ded7596a23b15b49fa946a4334d9e32');
try {
await vendure.order.addItemToOrder(productVariantId: 86, quantity: 1);
// Add assertions based on your expected result
} catch (e) {
print('Error adding item to cart: $e');
}
}