currentStudent method

Future<Response<CurrentStudentResponse>> currentStudent()

Get current student.

Implementation

Future<chopper.Response<CurrentStudentResponse>> currentStudent() {
  generatedMapping.putIfAbsent(
    CurrentStudentResponse,
    () => CurrentStudentResponse.fromJsonFactory,
  );

  return _currentStudent();
}