MultisigsResponse constructor

MultisigsResponse(
  1. String type,
  2. String codeId,
  3. String requestId,
  4. String action,
  5. String userId,
  6. String assetId,
  7. String amount,
  8. List<String> senders,
  9. List<String> receivers,
  10. int threshold,
  11. String state,
  12. String transactionHash,
  13. String rawTransaction,
  14. String createdAt,
  15. String? memo,
)

Implementation

MultisigsResponse(
  this.type,
  this.codeId,
  this.requestId,
  this.action,
  this.userId,
  this.assetId,
  this.amount,
  this.senders,
  this.receivers,
  this.threshold,
  this.state,
  this.transactionHash,
  this.rawTransaction,
  this.createdAt,
  this.memo,
);