EnvoyInternalAddress.fromJson constructor

EnvoyInternalAddress.fromJson(
  1. Map json_
)

Implementation

EnvoyInternalAddress.fromJson(core.Map json_)
    : this(
        endpointId: json_.containsKey('endpointId')
            ? json_['endpointId'] as core.String
            : null,
        serverListenerName: json_.containsKey('serverListenerName')
            ? json_['serverListenerName'] as core.String
            : null,
      );