formatted some files

This commit is contained in:
asif
2025-08-23 23:51:53 +05:30
parent 5f41c6e7f4
commit 59eb509dda
8 changed files with 125 additions and 116 deletions

View File

@@ -188,7 +188,7 @@ class _QuickPayOutsideBankScreen extends State<QuickPayOutsideBankScreen> {
toAccount: accountNumberController.text,
amount: amountController.text,
ifscCode: ifscController.text,
remitterName: "Unknown",
remitterName: "Unknown",
beneficiaryName: nameController.text,
tpin: tpin,
);
@@ -221,7 +221,7 @@ class _QuickPayOutsideBankScreen extends State<QuickPayOutsideBankScreen> {
);
completer.complete(paymentResponse);
}
}
}
if (isImps) {
// IMPS
@@ -230,7 +230,7 @@ class _QuickPayOutsideBankScreen extends State<QuickPayOutsideBankScreen> {
toAccount: accountNumberController.text,
amount: amountController.text,
ifscCode: ifscController.text,
remitterName: "Unknown",
remitterName: "Unknown",
beneficiaryName: nameController.text,
tpin: tpin,
);
@@ -263,16 +263,16 @@ class _QuickPayOutsideBankScreen extends State<QuickPayOutsideBankScreen> {
);
completer.complete(paymentResponse);
}
}
}
if(isRtgs) {
if (isRtgs) {
// RTGS
final rtgsTx = RtgsTransaction(
fromAccount: widget.debitAccount,
toAccount: accountNumberController.text,
amount: amountController.text,
ifscCode: ifscController.text,
remitterName: "Unknown",
remitterName: "Unknown",
beneficiaryName: nameController.text,
tpin: tpin,
);