VpnTunnelPhase2Algorithms.fromJson constructor

VpnTunnelPhase2Algorithms.fromJson(
  1. Map json_
)

Implementation

VpnTunnelPhase2Algorithms.fromJson(core.Map json_)
  : this(
      encryption: (json_['encryption'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      integrity: (json_['integrity'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      pfs: (json_['pfs'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );