SourceObjectIdentifier.fromJson constructor

SourceObjectIdentifier.fromJson(
  1. 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,
      );