onRoomIsUnderGoing function

Future<NEResult<void>> onRoomIsUnderGoing()

Implementation

Future<NEResult<void>> onRoomIsUnderGoing() {
  return Future.sync(() => NEResult(
        code: RoomErrorCode.failed,
        msg: NERoomSDKStrings.roomIsUnderGoing,
      ));
}