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