list 静态方法
- {bool includeLoopback = false,
- bool includeLinkLocal = false,
- InternetAddressType type = InternetAddressType.any}
查询系统中的 NetworkInterface。
如果 includeLoopback
为 true
,返回列表将包括回环设备。默认为 false
。
如果 includeLinkLocal
为 true
,返回的 NetworkInterface 地址列表可能包括链路本地地址。默认为 false
。
如果 type
为 InternetAddressType.IPv4 或 InternetAddressType.IPv6,则只查找指定类型的地址。默认为 InternetAddressType.any。
实现
external static Future<List<NetworkInterface>> list(
{bool includeLoopback = false,
bool includeLinkLocal = false,
InternetAddressType type = InternetAddressType.any});