Category : WooCommerce

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 ..

Read more