woocommerce Woocommerce SDK for Flutter. Getting Started Add the package to your pubspec.yaml and import. import ‘package:woocommerce/woocommerce.dart’; Create an instance of WooCommerce for your project. Example: WooCommerce woocommerce = WooCommerce( baseUrl: yourBaseUrl, consumerKey: yourConsumerKey, consumerSecret: consumerSecret); Parameter, [baseUrl] is the base url of your site. For example, http://me.com, https://me.com or http://my.me.com Parameter [consumerKey] is the consumer key provided by ..
Category : WooCommerce
WooCommerce SDK for Dart A dart package to interact with the WooCommerce API. It uses OAuth1.0a behind the scenes to generate the signature and URL string. It then makes calls and return the data back to the calling function. Examples GET request (Fetch products) Future getProducts() async { // Initialize the API WooCommerceAPI wooCommerceAPI = ..