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 […]
Change.listen not triggering at app end when data inserted in mongoDB in flutter
I am working in a flutter where I am expecting the UI to be updated with data when backend insert any in mongoDB collection. For futter I am using realm.