copyWith method
Implementation
PoolInfoScreenerSchema copyWith(
{String? asset0Id,
String? asset1Id,
int? createdAtBlockNumber,
int? createdAtBlockTimestamp,
String? createdAtTxnId,
int? feeBps,
String? id}) {
return PoolInfoScreenerSchema(
asset0Id: asset0Id ?? this.asset0Id,
asset1Id: asset1Id ?? this.asset1Id,
createdAtBlockNumber: createdAtBlockNumber ?? this.createdAtBlockNumber,
createdAtBlockTimestamp:
createdAtBlockTimestamp ?? this.createdAtBlockTimestamp,
createdAtTxnId: createdAtTxnId ?? this.createdAtTxnId,
feeBps: feeBps ?? this.feeBps,
id: id ?? this.id);
}