balanceNanoWit property
int
get
balanceNanoWit
Implementation
int get balanceNanoWit {
int value = 0;
if (_utxoInfo != null) {
utxos.forEach((Utxo utxo) {
value += utxo.value;
});
}
return value;
}