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