PaymentItemInfo constructor

PaymentItemInfo({
  1. String? code,
  2. String? name,
  3. int? quantity,
  4. double? price,
})

Implementation

PaymentItemInfo({
  this.code,
  this.name,
  this.quantity,
  this.price,
});