PaymentReceipt constructor
const
PaymentReceipt({
- required String title,
- required String description,
- Photo? photo,
- required int date,
- required int sellerBotUserId,
- required int paymentsProviderUserId,
- required Invoice invoice,
- OrderInfo? orderInfo,
- ShippingOption? shippingOption,
- required String credentialsTitle,
- required int tipAmount,
- dynamic extra,
- int? clientId,
Contains information about a successful payment
Implementation
const PaymentReceipt({
required this.title,
required this.description,
this.photo,
required this.date,
required this.sellerBotUserId,
required this.paymentsProviderUserId,
required this.invoice,
this.orderInfo,
this.shippingOption,
required this.credentialsTitle,
required this.tipAmount,
this.extra,
this.clientId,
});