byTicker static method
Implementation
static ChainParams? byTicker(String ticker) {
final upper = ticker.toUpperCase();
for (final p in all) {
if (p.ticker.toUpperCase() == upper) return p;
}
return null;
}
static ChainParams? byTicker(String ticker) {
final upper = ticker.toUpperCase();
for (final p in all) {
if (p.ticker.toUpperCase() == upper) return p;
}
return null;
}