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