isInCurrency method

bool isInCurrency(
  1. String isoCode
)

Returns true if this money value is in the specified currency.

Implementation

bool isInCurrency(String isoCode) => currency == Currencies().find(isoCode);