CoinSelection constructor

const CoinSelection({
  1. required List<SpendableUtxo> selected,
  2. required BigInt totalInput,
  3. required BigInt targetAmount,
  4. required BigInt fee,
})

Implementation

const CoinSelection({
  required this.selected,
  required this.totalInput,
  required this.targetAmount,
  required this.fee,
});