formatted the whole codebase

This commit is contained in:
asif
2025-08-18 03:20:05 +05:30
parent e2a809d363
commit e6ea764785
58 changed files with 470 additions and 373 deletions

View File

@@ -4,7 +4,7 @@ class Transaction {
final double amount;
final DateTime date;
final String category;
Transaction({
required this.id,
required this.description,
@@ -12,4 +12,4 @@ class Transaction {
required this.date,
required this.category,
});
}
}