ExternalServerConfig.fromJson constructor

ExternalServerConfig.fromJson(
  1. Map json_
)

Implementation

ExternalServerConfig.fromJson(core.Map json_)
  : this(
      allowedCidrBlocks: (json_['allowedCidrBlocks'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      ipAddress: json_['ipAddress'] as core.String?,
    );