getScailoClientForShiftsService function

ShiftsServiceClient getScailoClientForShiftsService()

Get the client to access the Shifts service

Implementation

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