exitRoom method

Future<TUIActionCallback> exitRoom()

Implementation

Future<TUIActionCallback> exitRoom() async {
  if (GetPlatform.isAndroid) {
    RtcConferenceTuikitPlatform.instance.stopForegroundService();
  }
  RoomStore.to.clearStore();
  return _roomEngine.exitRoom(false);
}