app-starlock/star_lock/lib/talk/call/iFrameInfo.dart
Daisy 063e62d087 1,本地持久化锁别名
2,对讲锁 新增本地通知用于设备处于后台及前台的呼叫提醒
3,解决接听成功后,超过六十秒的安全处理及逻辑优化
2024-03-25 17:33:40 +08:00

21 lines
333 B
Dart

class IframeInfo {
int iframeIndex = 0;
int iframeTime = 0;
int bagNum = 0;
int bagReceive = 1;
bool isFull = false;
int cur_len = 0;
int bb_len = 0;
List<int>? bb;
int codecMode = 0;
IframeInfo() {
iframeIndex = 0;
bagNum = 0;
bagReceive = 0;
isFull = false;
cur_len = 0;
bb = [];
}
}