MongodbObjectIdentifier.fromJson constructor
      
      MongodbObjectIdentifier.fromJson(
    
    
- Map json_
Implementation
MongodbObjectIdentifier.fromJson(core.Map json_)
  : this(
      collection: json_['collection'] as core.String?,
      database: json_['database'] as core.String?,
    );