streamTimestamp property

int streamTimestamp

Implementation

int get streamTimestamp {
  final user = ZegoUIKitCore.shared.coreData.getUser(id);
  if (user.isEmpty) {
    return ZegoUIKitCore.shared.coreData
        .getUserInMixerStream(id)
        .mainChannel
        .streamTimestamp;
  }
  return user.mainChannel.streamTimestamp;
}