OracleObjectIdentifier.fromJson constructor
OracleObjectIdentifier.fromJson(
- Map _json
Implementation
OracleObjectIdentifier.fromJson(core.Map _json)
: this(
schema: _json.containsKey('schema')
? _json['schema'] as core.String
: null,
table:
_json.containsKey('table') ? _json['table'] as core.String : null,
);