copyWithWrapped method

AssetListResponse$Response copyWithWrapped({
  1. Wrapped<List<AssetInfoSchema>>? assetList,
})

Implementation

AssetListResponse$Response copyWithWrapped(
    {Wrapped<List<AssetInfoSchema>>? assetList}) {
  return AssetListResponse$Response(
      assetList: (assetList != null ? assetList.value : this.assetList));
}