import 'package:objectbox/objectbox.dart'; @Entity() class CaptureBox { CaptureBox({ required this.type, required this.uuid, required this.startTime, }); @Id() int id = 0; String type; String uuid; @Property(type: PropertyType.date) DateTime startTime; }