list 静态方法

Future<List<NetworkInterface>> list(
  1. {bool includeLoopback = false,
  2. bool includeLinkLocal = false,
  3. InternetAddressType type = InternetAddressType.any}
)

查询系统中的 NetworkInterface

如果 includeLoopbacktrue,返回列表将包括回环设备。默认为 false

如果 includeLinkLocaltrue,返回的 NetworkInterface 地址列表可能包括链路本地地址。默认为 false

如果 typeInternetAddressType.IPv4InternetAddressType.IPv6,则只查找指定类型的地址。默认为 InternetAddressType.any

实现

external static Future<List<NetworkInterface>> list(
    {bool includeLoopback = false,
    bool includeLinkLocal = false,
    InternetAddressType type = InternetAddressType.any});