VmwareDataplaneV2Config.fromJson constructor

VmwareDataplaneV2Config.fromJson(
  1. Map json_
)

Implementation

VmwareDataplaneV2Config.fromJson(core.Map json_)
    : this(
        advancedNetworking: json_.containsKey('advancedNetworking')
            ? json_['advancedNetworking'] as core.bool
            : null,
        dataplaneV2Enabled: json_.containsKey('dataplaneV2Enabled')
            ? json_['dataplaneV2Enabled'] as core.bool
            : null,
        forwardMode: json_.containsKey('forwardMode')
            ? json_['forwardMode'] as core.String
            : null,
        windowsDataplaneV2Enabled:
            json_.containsKey('windowsDataplaneV2Enabled')
                ? json_['windowsDataplaneV2Enabled'] as core.bool
                : null,
      );