Relative Content

Tag Archive for fluttermongodbdartrealm

Can’t generate a RealmModel that has a RealmModel parameter

import ‘package:realm/realm.dart’; part ‘command.realm.dart’; @RealmModel() class _Command { @PrimaryKey() late ObjectId id; late String command; late String status; late DateTime tagab; } Hello, I am trying to have a class named UserDatabase that will have a parameter List. Where the Command class is provided above. After running: dart run realm generate The Command class was […]