PostgresDestinationConfig.fromJson constructor

PostgresDestinationConfig.fromJson(
  1. Map json_
)

Implementation

PostgresDestinationConfig.fromJson(core.Map json_)
    : this(
        maxConcurrentConnections:
            json_['maxConcurrentConnections'] as core.int?,
        transactionTimeout: json_['transactionTimeout'] as core.String?,
      );