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