TransactionUtxo constructor

TransactionUtxo({
  1. required String address,
  2. required int value,
  3. required int timelock,
  4. required bool locked,
})

Implementation

TransactionUtxo({
  required this.address,
  required this.value,
  required this.timelock,
  required this.locked,
});