deleteCommand property

Map<String, Object> deleteCommand
getter/setter pair

This Map contains the delete commands. Ex. {'delete': 'abc', 'deletes': {'filter': {'a': 1}}} This could be the result of the following: collection.bulkWrite([ {'insertOne': {'document: {'a', 1}}}, {'insertMany': {'documents': {'a', 2}, {'a', 3}}}, {'deleteOne': {'filter': {'a': 1}}} {'updateOne': {'filter': {'a': 1}, 'update': {'a': 10}}} {'insertOne': {'document: {'a', 4}}}, ])

Implementation

Map<String, Object> deleteCommand = <String, Object>{};