woocommerce_flutter_api 1.0.2
woocommerce_flutter_api: ^1.0.2 copied to clipboard
A fully documented Flutter package for seamless WooCommerce integration. Easily manage products, orders, and customers with updated dependencies for a streamlined e-commerce experience.
example/woocommerce_flutter_api_example.dart
import 'package:woocommerce_flutter_api/woocommerce_flutter_api.dart';
void main() async {
final woocommerce = WooCommerce(
baseUrl: 'https://example.com',
username: 'djasio',
password: 'ldp[sald]',
useFaker: true,
);
final response = await woocommerce.getProducts();
print(response);
}