onScanning property

Stream<Device> onScanning

Implementation

static Stream<Device> get onScanning {
  return _scanningEventChannel
      .receiveBroadcastStream()
      .map((e) => Device.fromJson(jsonDecode(e)));
}