I am using apisauce in a react native app. How can I send body with GET method?
const getMissedLesson = async () => {
  const body = {
    termId: "10BEDDF3",
    inactivityMinute: 20
  };
  return await apiClientTicket.get('/v1/support/missedLessonList', null);
};
