import 'package:json_annotation/json_annotation.dart'; import '../global/utils.dart'; part 'user.g.dart'; @JsonSerializable() class User { const User({ this.id, required this.name, required this.familyId, required this.budgetId, this.createdAt, this.updatedAt, this.lastActivityAt, }); final int? id; final int familyId, budgetId; final String name; @JsonKey(fromJson: dateFromJson, toJson: dateToJson) final DateTime? createdAt; @JsonKey(fromJson: dateFromJson, toJson: dateToJson) final DateTime? updatedAt; @JsonKey(fromJson: dateFromJson, toJson: dateToJson) final DateTime? lastActivityAt; factory User.fromJson(Map json) => _$UserFromJson(json); Map toJson() => _$UserToJson(this); }