NetworkEdgeSecurityServicesScopedList.fromJson constructor

NetworkEdgeSecurityServicesScopedList.fromJson(
  1. Map json_
)

Implementation

NetworkEdgeSecurityServicesScopedList.fromJson(core.Map json_)
    : this(
        networkEdgeSecurityServices:
            json_.containsKey('networkEdgeSecurityServices')
                ? (json_['networkEdgeSecurityServices'] as core.List)
                    .map((value) => NetworkEdgeSecurityService.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                    .toList()
                : null,
        warning: json_.containsKey('warning')
            ? NetworkEdgeSecurityServicesScopedListWarning.fromJson(
                json_['warning'] as core.Map<core.String, core.dynamic>)
            : null,
      );