OracleObjectIdentifier.fromJson constructor

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