LedgerOperations constructor

LedgerOperations({
  1. double? fee,
  2. List<NodeMovement>? nodeMovements,
  3. List<TransactionMovement>? transactionMovements,
  4. List<UnspentOutputs>? unspentOutputs,
})

Implementation

LedgerOperations({
  this.fee,
  this.nodeMovements,
  this.transactionMovements,
  this.unspentOutputs,
});