Mongodb – type 'ObjectId' is not a subtype of type 'String' of 'value'
I am trying to insert a document into my Mongo Database using the package mongo_dart var db = await Db.create(MONGO_CONN_STRING); await db.open(); var coll = db.collection('reports'); await coll.insertOne({ "username": "Tom", "action": "test", "dateTime": "today", }); Runtime error on line 4…