inputMessageInvoice property

InputMessageInvoice? inputMessageInvoice

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;
}