JdbcTarget.fromJson constructor
Implementation
factory JdbcTarget.fromJson(Map<String, dynamic> json) {
return JdbcTarget(
connectionName: json['ConnectionName'] as String?,
exclusions: (json['Exclusions'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
path: json['Path'] as String?,
);
}