Row constructor

Row(
  1. String amount,
  2. String price,
  3. Price priceR
)

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