woosignal_shopify_api 1.3.6 copy "woosignal_shopify_api: ^1.3.6" to clipboard
woosignal_shopify_api: ^1.3.6 copied to clipboard

Shopify API for Dart, connect a Shopify store on WooSignal and start using the API to get products, login, create orders and more.

Shopify API Dart plugin #

Official WooSignal Shopify package

Build apps for Shopify easier with our new package. Free to get started, see the simple examples below.

Getting Started #

In your flutter project add the dependency:

dependencies:
  ...
  woosignal_shopify_api: ^1.3.6

Usage example #

Import woosignal_shopify_api.dart

import 'package:shopify_woosignal/woosignal_shopify_api.dart';

Example using WooSignal API for Shopify #

import 'woosignal_shopify_api/woosignal_shopify_api.dart';

...

// EXAMPLE GET PRODUCT
_getProducts() async {

        // Step 1 - Initialize WooSignal
        await WooSignalShopify.instance.init(appKey: "your app key");

        // Step 2 - Call an API
        ShopifyProductResponse? shopifyProductResponse = await WooSignalShopify.instance.getProducts();

        print(shopifyProductResponse?.products?[0].name); // prints a product name
  });
}

Available API Requests #

Coming soon

Disclaimer: This plugin is not affiliated with or supported by Shopify. All logos and trademarks are the property of their respective owners.

3
likes
130
pub points
63%
popularity
screenshot

Publisher

verified publisherwoosignal.com

Shopify API for Dart, connect a Shopify store on WooSignal and start using the API to get products, login, create orders and more.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

BSD-3-Clause (LICENSE)

Dependencies

collection, device_meta, dio, encrypt, flutter, nylo_framework

More

Packages that depend on woosignal_shopify_api