getScailoClientForAnnouncementsService function
Get the client to access the Announcements service
Implementation
AnnouncementsServiceClient getScailoClientForAnnouncementsService() {
return AnnouncementsServiceClient(
getClientChannel(),
options: CallOptions(
metadata: {'auth_token': getAuthToken()},
timeout: const Duration(seconds: 10),
),
);
}