woocommerce_flutter_api 1.3.0
woocommerce_flutter_api: ^1.3.0 copied to clipboard
A Flutter package for WooCommerce integration. Manage products, orders, and customers with updated dependencies for seamless e-commerce.
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,
interceptors: [
// DioCacheInterceptor(),
],
);
final response = await woocommerce.getProducts();
print(response);
}