Set the last generated id or null to unset once used.

Property definitions

mongodb $ MongoClient :: last_id=
	# Set the last generated id or `null` to unset once used.
	private fun last_id=(id: nullable MongoObjectId) do
		if id == null then
			sys.last_mongoc_id = null
		else
			sys.last_mongoc_id = id.native
		end
	end
lib/mongodb/mongodb.nit:291,2--298,4