mapFlutterProductToProduct function
Implementation
Product mapFlutterProductToProduct(FlutterProduct flutterProduct) {
return Product._(
productId: flutterProduct.productId,
type: mapFlutterProductTypeToProductType(flutterProduct.type),
amountLabel: flutterProduct.amountLabel,
price: flutterProduct.price,
currency: flutterProduct.currency,
imageUrl: flutterProduct.imageUrl,
title: flutterProduct.title,
description: flutterProduct.description,
);
}