getScailoClientForReplaceableIndentsService function

ReplaceableIndentsServiceClient getScailoClientForReplaceableIndentsService()

Get the client to access the Replaceable Indents service

Implementation

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