PaymentItem constructor

PaymentItem({
  1. String? description,
  2. int? quantity,
  3. double? price,
  4. double? tax,
  5. dynamic name,
})

Implementation

PaymentItem(
    {this.description, this.quantity, this.price, this.tax, this.name});