Snapshot constructor

Snapshot(
  1. String snapshotId,
  2. String type,
  3. String assetId,
  4. String amount,
  5. DateTime createdAt,
  6. String? opponentId,
  7. String? traceId,
  8. String? transactionHash,
  9. String? sender,
  10. String? receiver,
  11. String? memo,
  12. int? confirmations,
  13. String? state,
)

Implementation

Snapshot(
  this.snapshotId,
  this.type,
  this.assetId,
  this.amount,
  this.createdAt,
  this.opponentId,
  this.traceId,
  this.transactionHash,
  this.sender,
  this.receiver,
  this.memo,
  this.confirmations,
  this.state,
);