InlineQueryResultPhoto constructor

const InlineQueryResultPhoto({
  1. required String id,
  2. required Photo photo,
  3. required String title,
  4. required String description,
})

Represents a photo

Implementation

const InlineQueryResultPhoto({
  required this.id,
  required this.photo,
  required this.title,
  required this.description,
});