domainList property

  1. @JsonKey.new(name: 'domainList')
List<String>? domainList
final

Local Access Point 的域名列表。SDK 会根据你填入的域名解析出 Local Access Point 的 IP 地址。域名解析的超时时间为 10 秒。ipList 和 domainList 必须至少填一个。如果你同时指定 IP 地址和域名,SDK 会将根据域名解析出来的 IP 地址和你指定的 IP 地址合并、去重,然后随机连接一个 IP 来实现负载均衡。

Implementation

@JsonKey(name: 'domainList')
final List<String>? domainList;