SearchTransactionsRequest constructor

const SearchTransactionsRequest(
  1. NetworkIdentifier networkIdentifier,
  2. String? operator,
  3. int? maxBlock,
  4. int? offset,
  5. int? limit,
  6. TransactionIdentifier? transactionIdentifier,
  7. AccountIdentifier? accountIdentifier,
  8. CoinIdentifier? coinIdentifier,
  9. Currency? currency,
  10. String? status,
  11. String? type,
  12. String? address,
  13. bool? success,
)

Implementation

const SearchTransactionsRequest(
  this.networkIdentifier,
  this.operator,
  this.maxBlock,
  this.offset,
  this.limit,
  this.transactionIdentifier,
  this.accountIdentifier,
  this.coinIdentifier,
  this.currency,
  this.status,
  this.type,
  this.address,
  this.success,
);