toProductDetail method
dynamic
toProductDetail()
Implementation
toProductDetail() {
return ProductDetails(
id: this.id,
title: this.title,
description: this.description,
price: this.price,
rawPrice: this.rawPrice,
currencySymbol: this.currencySymbol,
currencyCode: this.currencyCode,
);
}