replyVoice method
Future<Message>
replyVoice(
- dynamic voice, {
- bool withQuote = false,
- String? parseMode,
- bool? disableNotification,
- bool? allowSendingWithoutReply,
- ReplyMarkup? replyMarkup,
Reply to the recieved message with a voice message
A wrapper around TeleDart.sendVoice. On success, returns the sent Message.
Apart from a voice
to reply with, it can
also take some options that control the message
appearance and behavior.
Check Telegram API documentation for more information about those options.
Implementation
Future<Message> replyVoice(
dynamic voice, {
bool withQuote = false,
String? caption,
String? parseMode,
List<MessageEntity>? captionEntities,
bool? disableNotification,
bool? allowSendingWithoutReply,
ReplyMarkup? replyMarkup,
}) =>
_teledart.sendVoice(chat.id, voice,
messageThreadId: messageThreadId,
caption: caption,
parseMode: parseMode,
captionEntities: captionEntities,
disableNotification: disableNotification,
replyToMessageId: withQuote ? messageId : null,
allowSendingWithoutReply: allowSendingWithoutReply,
replyMarkup: replyMarkup);