messageInvoice property
A message with an invoice from a bot. Use getInternalLink with internalLinkTypeBotStart to share the invoice
Implementation
MessageInvoice? get messageInvoice {
if (this is MessageInvoice) {
return this as MessageInvoice;
}
return null;
}