TxoStats constructor
TxoStats({
- Int64? spent,
- Int64? unspent,
- Int64? pending,
- Int64? total,
Implementation
factory TxoStats({
$fixnum.Int64? spent,
$fixnum.Int64? unspent,
$fixnum.Int64? pending,
$fixnum.Int64? total,
}) {
final _result = create();
if (spent != null) {
_result.spent = spent;
}
if (unspent != null) {
_result.unspent = unspent;
}
if (pending != null) {
_result.pending = pending;
}
if (total != null) {
_result.total = total;
}
return _result;
}