msgasync property

int msgasync

消息加载序号

Implementation

int get msgasync => _usership?.msgasync ?? _teamship?.msgasync ?? 0;
void msgasync=(int value)

设置加载序号

Implementation

set msgasync(int value) {
  if (_usership != null) _usership?.msgasync = value;
  if (_teamship != null) _teamship?.msgasync = value;
}