getScailoClientForNotesService function

NotesServiceClient getScailoClientForNotesService()

Get the client to access the Notes service

Implementation

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