SafeSnapshot constructor

SafeSnapshot({
  1. required String snapshotId,
  2. required String type,
  3. required String assetId,
  4. required String amount,
  5. required String userId,
  6. required String opponentId,
  7. required String memo,
  8. required String transactionHash,
  9. required String createdAt,
  10. required String? traceId,
  11. required int? confirmations,
  12. required String? openingBalance,
  13. required String? closingBalance,
  14. SafeDeposit? deposit,
  15. SafeWithdrawal? withdrawal,
})

Implementation

SafeSnapshot({
  required this.snapshotId,
  required this.type,
  required this.assetId,
  required this.amount,
  required this.userId,
  required this.opponentId,
  required this.memo,
  required this.transactionHash,
  required this.createdAt,
  required this.traceId,
  required this.confirmations,
  required this.openingBalance,
  required this.closingBalance,
  this.deposit,
  this.withdrawal,
});