checkoutWithProducts static method

Future<void> checkoutWithProducts(
  1. List<Product?> products,
  2. String? currencyCode,
  3. String? couponCode,
  4. FastEventCallbacks eventCallbacks,
)

Implementation

static Future<void> checkoutWithProducts(
  List<Product?> products,
  String? currencyCode,
  String? couponCode,
  FastEventCallbacks eventCallbacks,
) async {
  _callbacks = eventCallbacks;
  return fastApi.checkoutWithProducts(products, currencyCode, couponCode);
}