copyWith method
Implementation
ProductInfo copyWith({
String? title,
FormattedText? description,
Photo? photo,
}) => ProductInfo(
title: title ?? this.title,
description: description ?? this.description,
photo: photo ?? this.photo,
);
ProductInfo copyWith({
String? title,
FormattedText? description,
Photo? photo,
}) => ProductInfo(
title: title ?? this.title,
description: description ?? this.description,
photo: photo ?? this.photo,
);