BlockforestRequestTransactionFilterParams constructor

const BlockforestRequestTransactionFilterParams({
  1. int? count,
  2. int? page,
  3. BlockforestRequestOrderingResponse? ordering,
  4. String? from,
  5. String? to,
})

Implementation

const BlockforestRequestTransactionFilterParams(
    {int? count,
    int? page,
    BlockforestRequestOrderingResponse? ordering,
    this.from,
    this.to})
    : super(count, page, ordering);