destroyRoom method

Future<TUIActionCallback> destroyRoom()

Implementation

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