PaymentInfoModel constructor

PaymentInfoModel({
  1. int? id,
  2. int? type,
  3. String? firebaseQR,
  4. String? paymentMethod,
  5. PaymentMethodInfo? paymentMethodInfo,
  6. String? countryCode,
  7. String? currency,
  8. double? amount,
  9. int? commissionId,
  10. PaymentResultStatus? status,
  11. String? error,
  12. int? timestamp,
  13. String? transactionFriendlyId,
  14. int? deliveryLocationId,
  15. int? fromShop,
  16. String? gateway,
})

Implementation

PaymentInfoModel(
    {this.id,
    this.type,
    this.firebaseQR,
    this.paymentMethod,
    this.paymentMethodInfo,
    this.countryCode,
    this.currency,
    this.amount,
    this.commissionId,
    this.status,
    this.error,
    this.timestamp,
    this.transactionFriendlyId,
    this.deliveryLocationId,
    this.fromShop,
    this.gateway});