ConnectionPoolConfig.fromJson constructor

ConnectionPoolConfig.fromJson(
  1. Map json_
)

Implementation

ConnectionPoolConfig.fromJson(core.Map json_)
  : this(
      authproxyPoolerCount: json_['authproxyPoolerCount'] as core.int?,
      authproxyPoolerScalingType:
          json_['authproxyPoolerScalingType'] as core.String?,
      enabled: json_['enabled'] as core.bool?,
      flags: (json_['flags'] as core.Map<core.String, core.dynamic>?)?.map(
        (key, value) => core.MapEntry(key, value as core.String),
      ),
      poolerCount: json_['poolerCount'] as core.int?,
      poolerScalingType: json_['poolerScalingType'] as core.String?,
    );