checkoutWithProducts static method
Future<void>
checkoutWithProducts(
- List<
Product?> products, - String? currencyCode,
- String? couponCode,
- 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);
}