getScailoClientForGeneralSettingsService function

GeneralSettingsServiceClient getScailoClientForGeneralSettingsService()

Get the client to access the General Settings service

Implementation

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