PostgresqlSchema.fromJson constructor
PostgresqlSchema.fromJson(
- Map json_
Implementation
PostgresqlSchema.fromJson(core.Map json_)
: this(
postgresqlTables: json_.containsKey('postgresqlTables')
? (json_['postgresqlTables'] as core.List)
.map((value) => PostgresqlTable.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
schema: json_.containsKey('schema')
? json_['schema'] as core.String
: null,
);