PaymentSource constructor

PaymentSource({
  1. int? itemId,
  2. double? amount,
  3. String? productName,
  4. String? productImage,
  5. String? paymentId,
  6. String? paymentType,
  7. String? time,
  8. String? deliveryAddress,
  9. String? orderStatus,
  10. String? from,
})

Implementation

PaymentSource({
  this.itemId,
  this.amount,
  this.productName,
  this.productImage,
  this.paymentId,
  this.paymentType,
  this.time,
  this.deliveryAddress,
  this.orderStatus,
  this.from
});