getMealSequence method
dynamic
getMealSequence()
모든 학년의 급식 반 순서를 가져오는 함수입니다.
Implementation
getMealSequence() async {
try {
Response response = await _dio.get("$apiUrl/dalgeurak/sequence");
return {
"success": true,
"content": response.data
};
} on DioError catch (e) {
return {
"success": false,
"content": e.response?.data["message"]
};
}
}