copyWithWrapped method

Assets copyWithWrapped({
  1. Wrapped<List<Asset>>? asset,
})

Implementation

Assets copyWithWrapped({Wrapped<List<Asset>>? asset}) {
  return Assets(asset: (asset != null ? asset.value : this.asset));
}