inputMessageInvoice property
A message with an invoice; can be used only by bots
Implementation
InputMessageInvoice? get inputMessageInvoice {
if (this is InputMessageInvoice) {
return this as InputMessageInvoice;
}
return null;
}
A message with an invoice; can be used only by bots
InputMessageInvoice? get inputMessageInvoice {
if (this is InputMessageInvoice) {
return this as InputMessageInvoice;
}
return null;
}