part 'user.g.dart';@EntityMeta()class User extends Entity{ @PrimaryKey() final int id; @Column() final String name; @Column() final String email; User(this.id, this.name, this.email); static EntityDescriptor<User, UserPartial> get entity => $UserEntityDescriptor;}
Elegant. Type-safe. Dart-native.
COMMUNITY
Community
Build with like-minded developers
Join our Discord server to connect with other Dart developers, get help, share your projects, and contribute to the future of Loxia.