mapFlutterProductToProduct function

Product mapFlutterProductToProduct(
  1. FlutterProduct flutterProduct
)

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,
  );
}