Price constructor
const
Price({})
Implementation
const Price(
{Key? key,
this.currency: "¥",
this.size: Style.priceFontSize,
required this.value,
this.color: Style.priceTextColor,
this.decimal: 2,
this.thousands: false})
: super(key: key);