Updates from idk when...

This commit is contained in:
Nathan Anderson
2023-08-17 13:34:30 -06:00
parent 6fae83674b
commit 1d1b5f0620
18 changed files with 614 additions and 161 deletions
+2
View File
@@ -10,6 +10,7 @@ class Budget {
this.id,
required this.familyId,
required this.name,
required this.expectedIncome,
required this.createdAt,
required this.updatedAt,
this.hide = false,
@@ -17,6 +18,7 @@ class Budget {
final int? id;
final int familyId;
final double? expectedIncome;
final String name;
@JsonKey(fromJson: boolFromJson, toJson: boolToJson)