invert method

  1. @override
Price invert()
override

Flip the price, switching the base and quote currency

Implementation

@override
Price invert() {
  return Price.fromContractor(
      quoteCurrency, baseCurrency, numerator, denominator);
}