SourceObjectIdentifier.fromJson constructor
SourceObjectIdentifier.fromJson(
- Map _json
Implementation
SourceObjectIdentifier.fromJson(core.Map _json)
: this(
mysqlIdentifier: _json.containsKey('mysqlIdentifier')
? MysqlObjectIdentifier.fromJson(_json['mysqlIdentifier']
as core.Map<core.String, core.dynamic>)
: null,
oracleIdentifier: _json.containsKey('oracleIdentifier')
? OracleObjectIdentifier.fromJson(_json['oracleIdentifier']
as core.Map<core.String, core.dynamic>)
: null,
);