GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher.fromJson constructor

GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher.fromJson(
  1. Map json_
)

Implementation

GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher.fromJson(
  core.Map json_,
) : this(
      hostname: json_['hostname'] as core.String?,
      ports:
          (json_['ports'] as core.List?)
              ?.map((value) => value as core.int)
              .toList(),
    );