InlineQueryResultContact constructor

InlineQueryResultContact({
  1. required String id,
  2. String type = InlineQueryResult.typeContact,
  3. required String phoneNumber,
  4. required String firstName,
  5. String? lastName,
  6. String? vcard,
  7. InlineKeyboardMarkup? replyMarkup,
  8. InputMessageContent? inputMessageContent,
  9. String? thumbnailUrl,
  10. int? thumbnailWidth,
  11. int? thumbnailHeight,
})

Implementation

InlineQueryResultContact({
  required this.id,
  this.type = InlineQueryResult.typeContact,
  required this.phoneNumber,
  required this.firstName,
  this.lastName,
  this.vcard,
  this.replyMarkup,
  this.inputMessageContent,
  this.thumbnailUrl,
  this.thumbnailWidth,
  this.thumbnailHeight,
});