Product constructor
Product({})
Returns a new Product instance.
Implementation
Product({
required this.id,
required this.name,
required this.description,
this.beforeMoneyAmount,
required this.moneyAmount,
this.taxCoeff,
required this.creditAmount,
this.createdAt,
this.updatedAt,
this.deletedAt,
});