InvoicePaymentModel constructor
InvoicePaymentModel({
- required InvoiceModel invoice,
- required AvailablePaymentModel payment,
- required double value,
Returns a new InvoicePaymentModel instance.
Implementation
InvoicePaymentModel({
required this.invoice,
required this.payment,
required this.value,
});