getScailoClientForAbsencesService function

AbsencesServiceClient getScailoClientForAbsencesService()

Get the client to access the Absences service

Implementation

AbsencesServiceClient getScailoClientForAbsencesService() {
  return AbsencesServiceClient(
    getClientChannel(),
    options: CallOptions(
      metadata: {'auth_token': getAuthToken()},
      timeout: const Duration(seconds: 10),
    ),
  );
}