SafeUtxoOutput constructor

const SafeUtxoOutput({
  1. required String outputId,
  2. required String transactionHash,
  3. required int outputIndex,
  4. required String asset,
  5. required int sequence,
  6. required String amount,
  7. required String mask,
  8. required List<String> keys,
  9. required List<String> receivers,
  10. required String receiversHash,
  11. required int receiversThreshold,
  12. required String extra,
  13. required String state,
  14. required String createdAt,
  15. required String updatedAt,
  16. required String signedBy,
  17. required String signedAt,
  18. required String spentAt,
})

Implementation

const SafeUtxoOutput({
  required this.outputId,
  required this.transactionHash,
  required this.outputIndex,
  required this.asset,
  required this.sequence,
  required this.amount,
  required this.mask,
  required this.keys,
  required this.receivers,
  required this.receiversHash,
  required this.receiversThreshold,
  required this.extra,
  required this.state,
  required this.createdAt,
  required this.updatedAt,
  required this.signedBy,
  required this.signedAt,
  required this.spentAt,
});