isObsLive method

bool isObsLive()

Implementation

bool isObsLive() {
  // obs: VideoLandscape4Seats + keepOwnerOnSeat(false)
  final seatTemplate = roomState.liveInfo.seatTemplate;
  final keepOwnerOnSeat = roomState.liveInfo.keepOwnerOnSeat;
  return seatTemplate is VideoLandscape4Seats && !keepOwnerOnSeat;
}