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