PoolInfoScreenerSchema constructor

const PoolInfoScreenerSchema({
  1. required String asset0Id,
  2. required String asset1Id,
  3. int? createdAtBlockNumber,
  4. int? createdAtBlockTimestamp,
  5. String? createdAtTxnId,
  6. int? feeBps,
  7. required String id,
})

Implementation

const PoolInfoScreenerSchema({
  required this.asset0Id,
  required this.asset1Id,
  this.createdAtBlockNumber,
  this.createdAtBlockTimestamp,
  this.createdAtTxnId,
  this.feeBps,
  required this.id,
});