acceptRequest method

void acceptRequest(
  1. String requestId
)

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);
  }
}