InlineQueryResultPhoto constructor

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

Implementation

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