ListTransactionsRequest constructor

const ListTransactionsRequest({
  1. int? from,
  2. int? until,
  3. int? limit,
  4. int? offset,
  5. bool unpaid = false,
  6. TransactionType? type,
})

Implementation

const ListTransactionsRequest({
  this.from,
  this.until,
  this.limit,
  this.offset,
  this.unpaid = false,
  this.type,
}) : super(method: NwcMethod.LIST_TRANSACTIONS);