PostgresqlTable.fromJson constructor
      
      PostgresqlTable.fromJson(
    
    
- Map json_
Implementation
PostgresqlTable.fromJson(core.Map json_)
  : this(
      postgresqlColumns:
          (json_['postgresqlColumns'] as core.List?)
              ?.map(
                (value) => PostgresqlColumn.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      table: json_['table'] as core.String?,
    );