import 'dart:ui'; import 'package:json_annotation/json_annotation.dart'; import '../global/utils.dart'; part 'budget_category_model.g.dart'; @JsonSerializable() class BudgetCategory { const BudgetCategory({ this.id, required this.budgetId, required this.name, required this.color, this.createdAt, this.updatedAt, required this.amount, this.hide = false, }); final int budgetId; final int? id; final String name; final double amount; @JsonKey(fromJson: boolFromJson, toJson: boolToJson) final bool hide; @JsonKey(fromJson: colorFromJson, toJson: colorToJson) final Color color; @JsonKey(fromJson: dateFromJson, toJson: dateToJson) final DateTime? createdAt; @JsonKey(fromJson: dateFromJson, toJson: dateToJson) final DateTime? updatedAt; factory BudgetCategory.fromJson(Map json) => _$BudgetCategoryFromJson(json); Map toJson() => _$BudgetCategoryToJson(this); }