copyWithWrapped method

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

Implementation

PoolListResponse$Response copyWithWrapped(
    {Wrapped<List<PoolInfoSchema>>? poolList}) {
  return PoolListResponse$Response(
      poolList: (poolList != null ? poolList.value : this.poolList));
}