Row constructor
Implementation
Row(String amount, String price, Price priceR) {
this.amount = checkNotNull(amount, "amount cannot be null");
this.price = checkNotNull(price, "price cannot be null");
this.priceR = checkNotNull(priceR, "priceR cannot be null");
}