SwapEvent constructor

const SwapEvent({
  1. String? amount0In,
  2. String? amount0Out,
  3. String? amount1In,
  4. String? amount1Out,
  5. required int eventIndex,
  6. required String maker,
  7. required String pairId,
  8. required String priceNative,
  9. Reserves? reserves,
  10. required String txnId,
  11. required int txnIndex,
})

Implementation

const SwapEvent({
  this.amount0In,
  this.amount0Out,
  this.amount1In,
  this.amount1Out,
  required this.eventIndex,
  required this.maker,
  required this.pairId,
  required this.priceNative,
  this.reserves,
  required this.txnId,
  required this.txnIndex,
});