TransactionDetailResponse constructor

TransactionDetailResponse({
  1. required String walletId,
  2. required String queryId,
  3. BitcoinTransaction? transaction,
  4. bool found = true,
  5. String? error,
})

Implementation

TransactionDetailResponse({
  required this.walletId,
  required this.queryId,
  this.transaction,
  this.found = true,
  this.error,
});