VpcscConfig.fromJson constructor

VpcscConfig.fromJson(
  1. Map json_
)

Implementation

VpcscConfig.fromJson(core.Map json_)
  : this(
      defaultAllowlistedHost: (json_['defaultAllowlistedHost'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      disableFirewallVpcscFlow:
          json_['disableFirewallVpcscFlow'] as core.bool?,
    );