copyWith method

ProductInfo copyWith({
  1. String? title,
  2. FormattedText? description,
  3. Photo? photo,
})

Implementation

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