Price constructor

Price(
  1. int n,
  2. int d
)

Create a new price. Price in Stellar is represented as a fraction.

Implementation

Price(this.n, this.d);