isSupported static method

bool isSupported(
  1. String value
)

Check if the currency is supported

Implementation

static bool isSupported(String value) {
  return _currencyRegExp.hasMatch(value);
}