InputInlineQueryResultAudio constructor

const InputInlineQueryResultAudio({
  1. required String id,
  2. required String title,
  3. required String performer,
  4. required String audioUrl,
  5. required int audioDuration,
  6. ReplyMarkup? replyMarkup,
  7. required InputMessageContent inputMessageContent,
})

Represents a link to an MP3 audio file

Implementation

const InputInlineQueryResultAudio({
  required this.id,
  required this.title,
  required this.performer,
  required this.audioUrl,
  required this.audioDuration,
  this.replyMarkup,
  required this.inputMessageContent,
});