MongoDBTarget.fromJson constructor

MongoDBTarget.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}