copyWith method

PoolListResponse$Response copyWith({
  1. List<PoolInfoSchema>? poolList,
})

Implementation

PoolListResponse$Response copyWith({List<PoolInfoSchema>? poolList}) {
  return PoolListResponse$Response(poolList: poolList ?? this.poolList);
}