MongoDBTarget.fromJson constructor
Implementation
factory MongoDBTarget.fromJson(Map<String, dynamic> json) {
  return MongoDBTarget(
    connectionName: json['ConnectionName'] as String?,
    path: json['Path'] as String?,
    scanAll: json['ScanAll'] as bool?,
  );
}