import 'package:json_annotation/json_annotation.dart'; part 'logentry.g.dart'; @JsonSerializable() class LogEntry { DateTime time; String uid; LogEntry({required this.time, required this.uid}); factory LogEntry.fromJson(Map json) => _$LogEntryFromJson(json); Map toJson() => _$LogEntryToJson(this); }