copyWith method

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

Implementation

AssetListResponse$Response copyWith({List<AssetInfoSchema>? assetList}) {
  return AssetListResponse$Response(assetList: assetList ?? this.assetList);
}