MessageMediaInvoice constructor

const MessageMediaInvoice({
  1. required bool shippingAddressRequested,
  2. required bool test,
  3. required String title,
  4. required String description,
  5. WebDocumentBase? photo,
  6. int? receiptMsgId,
  7. required String currency,
  8. required int totalAmount,
  9. required String startParam,
  10. MessageExtendedMediaBase? extendedMedia,
})

Message Media Invoice constructor.

Implementation

const MessageMediaInvoice({
  required this.shippingAddressRequested,
  required this.test,
  required this.title,
  required this.description,
  this.photo,
  this.receiptMsgId,
  required this.currency,
  required this.totalAmount,
  required this.startParam,
  this.extendedMedia,
}) : super._();