cryptocurrencyIsoCode property
String
get
cryptocurrencyIsoCode
Returns a random cryptocurrency ISO code.
Example:
Finance().cryptocurrencyIsoCode; // "DOT"
Implementation
String get cryptocurrencyIsoCode {
final data = IntFinanceData.cryptocurrencyIsoCodes;
return data[Random(seed).integer(max: data.length - 1)];
}