InvoicePaymentModel constructor

InvoicePaymentModel({
  1. required InvoiceModel invoice,
  2. required AvailablePaymentModel payment,
  3. required double value,
})

Returns a new InvoicePaymentModel instance.

Implementation

InvoicePaymentModel({
  required this.invoice,
  required this.payment,
  required this.value,
});