JdbcTarget.fromJson constructor

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

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