removed some print statements

This commit is contained in:
asif
2025-08-29 23:27:14 +05:30
parent 6724d8bed0
commit ef3556f207

View File

@@ -1,5 +1,3 @@
// ignore_for_file: non_constant_identifier_names
class Beneficiary {
final String accountNo;
final String accountType;
@@ -53,7 +51,6 @@ class Beneficiary {
final beneficiaryList = jsonList
.map((beneficiary) => Beneficiary.fromJson(beneficiary))
.toList();
print(beneficiaryList);
return beneficiaryList;
}