completed batch feature

This commit is contained in:
Prince
2026-06-17 00:55:20 +02:00
parent 31f403aa10
commit cc4b02f3c9
14 changed files with 2654 additions and 989 deletions

View File

@@ -60,16 +60,16 @@ class TransactionModel {
final String reference;
final String paymentProcessorLabel;
final String? integrationProcessorLabel;
final String confirmationProcessorLabel;
final String providerLabel;
final String? confirmationProcessorLabel;
final String? providerLabel;
final String debitPhone;
final String debitCurrency;
final String debitRef;
final String? debitRef;
final String? creditPhone;
final String? creditAccount;
final String? creditRef;
final String? billClientId;
final String billName;
final String? billName;
final String paymentProcessorName;
final String? providerImage;
final String? paymentProcessorImage;
@@ -108,16 +108,16 @@ class TransactionModel {
required this.reference,
required this.paymentProcessorLabel,
this.integrationProcessorLabel,
required this.confirmationProcessorLabel,
required this.providerLabel,
this.confirmationProcessorLabel,
this.providerLabel,
required this.debitPhone,
required this.debitCurrency,
required this.debitRef,
this.debitRef,
this.creditPhone,
this.creditAccount,
this.creditRef,
this.billClientId,
required this.billName,
this.billName,
required this.paymentProcessorName,
this.providerImage,
this.paymentProcessorImage,