cryptocurrencySymbol property
String
get
cryptocurrencySymbol
Returns a cryptocurrency symbol.
Example:
Finance().cryptocurrencySymbol; // "₿"
Implementation
String get cryptocurrencySymbol {
final data = IntFinanceData.cryptocurrencySymbols;
return data[Random(seed).integer(max: data.length - 1)];
}