MysqlSourceConfig.fromJson constructor
MysqlSourceConfig.fromJson(
- Map json_
Implementation
MysqlSourceConfig.fromJson(core.Map json_)
: this(
allowlist: json_.containsKey('allowlist')
? MysqlRdbms.fromJson(
json_['allowlist'] as core.Map<core.String, core.dynamic>)
: null,
rejectlist: json_.containsKey('rejectlist')
? MysqlRdbms.fromJson(
json_['rejectlist'] as core.Map<core.String, core.dynamic>)
: null,
);