$VpcAccessibleServices.fromJson constructor

$VpcAccessibleServices.fromJson(
  1. Map json_
)

Implementation

$VpcAccessibleServices.fromJson(core.Map json_)
    : this(
        allowedServices: json_.containsKey('allowedServices')
            ? (json_['allowedServices'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        enableRestriction: json_.containsKey('enableRestriction')
            ? json_['enableRestriction'] as core.bool
            : null,
      );