copyWith method

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

Implementation

Assets copyWith({List<Asset>? asset}) {
  return Assets(asset: asset ?? this.asset);
}