MongodbObjectIdentifier.fromJson constructor

MongodbObjectIdentifier.fromJson(
  1. Map json_
)

Implementation

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