BotInlineMessageMediaContact constructor

const BotInlineMessageMediaContact({
  1. required String phoneNumber,
  2. required String firstName,
  3. required String lastName,
  4. required String vcard,
  5. ReplyMarkupBase? replyMarkup,
})

Bot Inline Message Media Contact constructor.

Implementation

const BotInlineMessageMediaContact({
  required this.phoneNumber,
  required this.firstName,
  required this.lastName,
  required this.vcard,
  this.replyMarkup,
}) : super._();