launchCheckout method

Future<void> launchCheckout(
  1. String checkoutUrl, {
  2. ShopifySheetConfiguration? configuration,
})

Implementation

Future<void> launchCheckout(
    String checkoutUrl, {
      ShopifySheetConfiguration? configuration,
    }) {
  return ShopifySheetPlatform.instance.launchCheckout(
    checkoutUrl,
    configuration: configuration,
  );
}