ExternalServerConfig.fromJson constructor
ExternalServerConfig.fromJson(
- 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?,
);