OracleSchema.fromJson constructor
OracleSchema.fromJson(
- Map _json
Implementation
OracleSchema.fromJson(core.Map _json)
: this(
oracleTables: _json.containsKey('oracleTables')
? (_json['oracleTables'] as core.List)
.map((value) => OracleTable.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
schemaName: _json.containsKey('schemaName')
? _json['schemaName'] as core.String
: null,
);