notifyDeviceData property
override
设备交互数据
Implementation
@override
Stream<NotifyDeviceDataEntity> get notifyDeviceData => bs.where((data) {
// return data["dataType"] == "1111";
return data["notifyType"] == "deviceData";
}).map((state) {
return NotifyDeviceDataEntity.fromJson(state.cast<String, dynamic>());
});