rejectRequest method
Implementation
void rejectRequest(String requestId) async {
final result = await liveService.responseRemoteRequest(requestId, false);
if (result.code == TUIError.success) {
seatState.removeSeatApplication(requestId);
} else {
ErrorHandler.onError(result.code);
}
}