wifiOnFound property

Stream<WifiOnFoundResponse>? wifiOnFound

Implementation

Stream<WifiOnFoundResponse>? get wifiOnFound {
  _wifiOnFound ??= _getWifiBroadcastStream!
      .where((eventMap) => eventMap['event'] == 'onFound')
      .map((dynamic eventMap) {
    return WifiOnFoundResponse.fromMap(eventMap);
  });
  return _wifiOnFound;
}