fromCurve static method
Implementation
static List<SubstrateCoins> fromCurve(EllipticCurveTypes type) {
return _coinToConf.entries
.where((element) => element.value.type == type)
.map((e) => e.key)
.toList();
}
static List<SubstrateCoins> fromCurve(EllipticCurveTypes type) {
return _coinToConf.entries
.where((element) => element.value.type == type)
.map((e) => e.key)
.toList();
}