onNetworkInterfacesChanged property
Implementation
@override
Stream<List<NetworkInterfaceType>> get onNetworkInterfacesChanged {
_onNetworkInterfacesChanged ??= eventChannel
.receiveBroadcastStream()
.map((dynamic result) => List<String>.from(result))
.map(parseNetworkInterfaceTypes);
return _onNetworkInterfacesChanged!;
}