import 'package:objectbox/objectbox.dart'; enum ContentType { text, img } @Entity() class Content { int id = 0; final ContentType type = ContentType.text; final String plaintext = ""; }