find method

Currency? find(
  1. String isoCode
)

Searches the list of registered Currencys.

Returns the Currency that matches isoCode or null if no matching isoCode is found.

final usdAmount = Currencies().parse(r'$USD1500.0');

See: Currencies.register Currencies.registerList

Implementation

Currency? find(String isoCode) => _directory[isoCode];