ProductInfo constructor

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

Implementation

ProductInfo({required this.title, this.description, this.photo});